displaying JTable (AbstractTableModel) rows based on radiobox criteria
hi,
Would appreciate some pointers as to how to do this ...
I have a AbstractTableModel that needs to display rows depending on which radiobox criteria is selected.
There are only 2 columns in the JTABLE:
(1) categories(string)
(2) register interest (boolean)
The radioboxes (and the criterias) are:
1. display all rows
2. display only rows when register interest = false
3. dislplay only rows when register interest = true
How can i achieve this ?
The GetValue/SetValue from AbstractTableModel() deal at the column and not row level.So i am stumped.
Thanks for any help.
Tony

