Senario: So basically I\'m using DataTables and have checkboxes on its first column. My DataTables have multiple pages (pagination).
The Pro
if you are using Rails what about using Form Helpers?
If you are creating a new record, one simple example is:
<%= form_for(:table_name, :action => 'create') do |f| %>
<%= f.label(:responsive) %>
<%= f.check_box(:responsive) %>
<%= f.label(:auto_width) %>
<%= f.check_box(:auto_width) %>
<%= submit_tag("Create Page") %>
<% end %>
Even if you have several pages, if you keep all your form helpers inside the form_for
method, everything should be saved to your database.