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
eharding
Posts: 15Questions: 7Answers: 0
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?
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