Question

SelectionModel currently handles mouse click and keyboard on select row in cellTable. How do I do it programmatically to move to next/prev row according to current selected row?

Was it helpful?

Solution

  1. In your list of items find the currently selected item
  2. Determine next item that would be selected
  3. Call the SelectionModel.setSelected(T object, boolean selected) method, passing your next object to be selected and true for the selected parameter.

To find the currently selected object (if you don't hold a reference to it anywhere) you can iterate over all the objects in the CellTable and check which one is selected by calling SelectionModel.isSelected(T object) method.

OTHER TIPS

If you don't want to use the selection model directly, you can just use the JTable method:

setRowSelectionInterval
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top