Can anyone provide jgoodies Jtable binding simple example using swing taking a List of javabeans extending Jgoodies Model class.I could not find a simple example of doing it.
Thanks in Advance
Can anyone provide jgoodies Jtable binding simple example using swing taking a List of javabeans extending Jgoodies Model class.I could not find a simple example of doing it.
Thanks in Advance
Copyright © 2021 Jogjafile Inc.
For JTable binding, you need to write a TableModel for your JTable
For example, you have a java bean such as
Create a table,
The class MyTableModel takes list as an argument and it will extend com.jgoodies.binding.adapter.AbstractTableAdapter
MyTableModel.java
Hope this helps.