Is "row-selector" able to show the selected row on first page like research function does?
Is "row-selector" able to show the selected row on first page like research function does?
Bruceeeeeeeeee
Posts: 16Questions: 5Answers: 0
Link to test case: https://live.datatables.net/nadanoce/5/edit
Description of problem:
Hello,
I'm trying to add a "find yourself" button to make user quick find themselves when click the button, but the question is if my name is "Zorita Serrano", the last row in last page of table, I cannot see it be selected, is there a way to show the all selected rows on first page like I do -> search: Zorita Serrano?
Thanks!
This question has accepted answers - jump to:
Answers
Here are some options I can think of:
pluck()
API you can get the particular row element values into an array. This array can be used withcolumn().search()
to filter the table showing only the selected rows.column().search()
to search for the name of the user.There are probably other options. Just depends on how exactly you want this to work.
Kevin
This plug-in is what you want I think. Updated example with it.
Allan
Many thanks to @kthorngren and @allan !