Datatable filter with pagination
See original GitHub issue-
carbon-components
- [ X]
carbon-components-react
I am using the DataTable with Pagination components and the TableToolbarSearch. I have many pages of rows but the filter is doing the search only in the current page, is any way to search in all of the pages? Is any way to execute a server search using the TableToolbarSearch ?
Issue Analytics
- State:
- Created 4 years ago
- Comments:5
Top Results From Across the Web
Data table with sorting, pagination, and filtering. - StackBlitz
Data table with sorting, pagination, and filtering.
Read more >DataTable filtering and paging — DataTables forums
How do I filter my table on the values of a certain column. My showAll function needs to show everything except for records...
Read more >datatables - Custom filter and pagination - Stack Overflow
I have created custom filter for my DataTables:
Read more >DataTables AJAX pagination with Custom filter in CodeIgniter 3
DataTables by default comes with a search filter that can be used to search on all fields or specific fields and display records....
Read more >Data / DataTable - Pagination ⋅ Storybook
Sub-components · DataTable.Row = data row · DataTable.Column = header column; · DataTable.Data = data cell · DataTable.Action = table action area ·...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
When you updated the data in the table - each row data object can have a
selected
property set - so if you maintain your list of “selected” outside of the table, when you need to render a new set of data you just need to preprocess it to add the selected property to rows.Your approach makes sense @nictownsend ,but if I have certain selected rows that I want to keep selected, updating the data to render in the table will make me lose the selection every time I apply a new search/filter correct?