how do i do a muliple select and pass those rows to another page in my webapp
how do i do a muliple select and pass those rows to another page in my webapp
in DataTables
i have a datatable i want to select mulple rows then password those rows (index) to another page/function. how do i do that?
This discussion has been closed.
Answers
This exmaple shows how to get the selected rows. Use the
rows().data()API to get the data instead of thecount(). This SO thread discusses options to move data between pages. Shoose the one that works for your situation.Kevin
thanks, i'll take a look