I have JTable like this
I want to hide the row whenever the respective clear button(JButton) is pressed.And do other task such delete the row from mysql as the table is populated form database.
As i have two override function :-
one:
public Component getTableCellRendererComponent(JTable table, Object value,
boolean isSelected, boolean hasFocus, int row, int column)
two:
public Component getTableCellEditorComponent(JTable table, Object value,
boolean isSelected, int row, int column)
where and how i have to change to achieve this.Or any other implementations details that would help me.Thanks