Jeanette from SwingX pointed out that I forgot to keep the selection in sync. Follows a snapshot of my implementation, both tables are kept in sync whether you click on the right table or the left(frozen) table. Not sure how robust this is, but I relied on the Focus gained or lost events.
1 comment:
Check this out: selection model
Basically, grid.setSelectionModel(frozenGrid.getSelectionModel()); works great
Post a Comment