Inconsistent filtering functionality #6014
Unanswered
danny-zegel-zocdoc
asked this question in
Q&A
Replies: 1 comment
|
The reason for this behavior is that TanStack Table differentiates between the global dataset selection state and the filtered subset selection state:
Solution: Check Selection Against
|
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
When using client side filtering I need a way to both toggle row selections and check the row selections for filtered rows but
table.getIsSomeRowsSelected()&table.getIsAllRowsSelected()both consider all rows in the table ignoring filtering whiletable.toggleAllRowsSelected()toggles only rows that are filtered in. This is both inconsistent and lacks the capabilities I need.Am I using the following, any help would be appreciated.
All reactions