The title says it all. I don't know how to uncheck the checkboxes on the Jtable after a Jbutton is clicked. I tried
JCheckBox renderer = (JCheckBox)table.getDefaultRenderer(Boolean.class);
renderer.isSelected(false);
but it doesn't work.
The title says it all. I don't know how to uncheck the checkboxes on the Jtable after a Jbutton is clicked. I tried
JCheckBox renderer = (JCheckBox)table.getDefaultRenderer(Boolean.class);
renderer.isSelected(false);
but it doesn't work.