Tagged Questions
The beans-binding tag has no wiki summary.
3
votes
1answer
340 views
JTable: how to get selected object from table binded to datasource
I have JTable which "elements" property binded to List of objects, this is master table. There is also details table, which "elements" property binded to selectedElement in master table. I did it with ...
1
vote
2answers
151 views
What is the state of Java Beans Binding?
I found an old article http://www.artima.com/lejava/articles/beans_binding.html
And a deserted project page http://java.net/projects/beansbinding
Is it still alive? Can I download something? Is there ...
1
vote
2answers
427 views
Bind arraylist to jtable
recently I wrote a C# application, that simply rendered the elements of a list ( named lst) of objects into a table, with the following code:
DataTable dt = Request.ListToDataTable(lst);
dw = new ...
1
vote
1answer
665 views
Java Swing: How to bind a JLabel's text to a column in the selected row of a JTable?
I am using Netbeans and am trying to find a way for the IDE to auto-generate the code for me. I remember binding a JLabel's text to a column in the selected row of the JTable before, but in that case, ...
1
vote
2answers
1k views
What will replace Beans Binding in Java 7?
I read somewhere - the link escapes me - that Beans Binding will not be a part of Java 7. Does anybody know what will replace it?
Also, are there any alternatives to beans binding in the current ...