Tagged Questions
0
votes
2answers
513 views
org.jdesktop.swingbinding.JTableBinding$BindingTableModel cannot be cast to javax.swing.table.DefaultTableModel
Now I tried to group jtable header and for that I want to get the DefaultTableModel of current Jtable. but When i tried to retrieve the table model like...
DefaultTableModel dm=(DefaultTableModel) ...
1
vote
1answer
602 views
Binding Swing components to Java objects
I'm currently working on a Desktop Application in Java using Swing. I’m using the beansbinding framework by jdesktop.org to synchronize the state of GUI components and data objects. However I’m ...