I have implemented jQuery datatables with pagination enabled.I want to select multiple rows via radio buttons from any random pages and want to perform some action on them on a click of a button.
My current implementation processes the selection of the current page begin viewed but doesn't process the rest.
I want to process all records form every page at once. Please Help,
Here's my button click event code:
$('#mastersave').click(function() {
$('#mastertable tr').filter(':has(:checkbox:checked)').each(function() {
$tr = $(this);
..............
//Do some operations
...............
});
});