how to - multple row selection with JTable
hello all
To enable multiple row selection in JTable i am using following code
but it doent work and i am able to select single row only
table.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
table.setRowSelectionAllowed(true);
table.setColumnSelectionAllowed(false);
any suggestions ?
thanx in advance!!

