Process of binding the GUI interface component with the data source component (like example a database) so that the data is automatically kept synchronized when changes are made both on the GUI and on the data source component.
Questions tagged [beans-binding]
35 questions
0
votes
0 answers
Beans binding in JTextField inside a panel doesn't work
I have following code.. I realize that "setSearchedText" is not invoked. So binding is not happening.. SearchInvestigationPanel is inside InvestigationsPanel. Note that textField inside SearchInvestigationPanel cannot be retrieved by outside the…

Brunthavan
- 27
- 5
0
votes
1 answer
refresh a binded jtable with org.jdesktop.swingbinding.JTableBinding
I created a jpanel that contains a jtable binded to database table using netbeans right click -> bind -> elements and a refresh buton.
the jpanel is inside a jtabbedpane that is inside a jframe.
I want to refresh the jtable after adding or deleting…

code-sb
- 11
- 5
0
votes
1 answer
How to deal with GlazedLists's PluggableList requirement for shared publisher and lock
I have just started using GlazedLists in a Java project which uses beansbinding extensively (MVVM pattern).
PluggableList is allowing me to bind a source list to a table, and then change the source list at runtime. In order to make this happen…

Jwest08
- 426
- 5
- 5
0
votes
1 answer
Problems binding JTable selectedRow to JTextField (org.jdesktop.beansbinding)
I have a Java Swing application and want to bind the selected row of a JTable to a JTextField. My binding looks as follows:
BeanProperty tableBeanProperty = BeanProperty.create("selectedRow");
BeanProperty

user3297735
- 11
- 3
-1
votes
1 answer
Binding domain object to GUI
I would like to know how to bind my domain object with are POJOs to my GUI component. Should I inject my domain object to the constructor of my view, or is there a better design? Does my domain object have to extend a specific class?

wotan2009
- 151
- 1
- 3
- 6