You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It works fine with JXTable without TableRowFilterSupport. However, when we use
TableRowFilterSupport.forTable(table).apply();
on the same table. The tri-state sorting behavior disappears and we can only do bi-state sorting. BTW, we tried call setSortOrderCycle either before or after TableRowFilterSupport.forTable(table).apply().
The text was updated successfully, but these errors were encountered:
First, thank you very much for the great work. We are using TableRowFilterSupport with a JXTable. We would like to enable tri-state sorting, i.e.
First click on column header: sort ascending
Second click on column header: sort descending
Third click on column header: remove sorting
We are using the following to enable it.
table.setSortOrderCycle(SortOrder.ASCENDING, SortOrder.DESCENDING, SortOrder.UNSORTED);
It works fine with JXTable without TableRowFilterSupport. However, when we use
TableRowFilterSupport.forTable(table).apply();
on the same table. The tri-state sorting behavior disappears and we can only do bi-state sorting. BTW, we tried call setSortOrderCycle either before or after TableRowFilterSupport.forTable(table).apply().
The text was updated successfully, but these errors were encountered: