gyrocode / jquery-datatables-checkboxes

Checkboxes is an extension for the jQuery DataTables library that provides universal solution for working with checkboxes in a table.
https://www.gyrocode.com/projects/jquery-datatables-checkboxes/
MIT License
150 stars 61 forks source link

Get data of selected row #127

Closed sebastianro92 closed 3 years ago

sebastianro92 commented 3 years ago

Hi, is there any way, to get the data of the selected row using server side?

nikitul commented 3 years ago

Yes. The best way to do it is to set up a repo variable, var repo={} and using selectCallback to capture the selected/deselected cellNodes, and with them, find the selected row and save/delete the data to/from repo. I made a fiddle for it.