how to add Check all in datatable
how to add Check all in datatable
I searched in forums but didnt find exact solution for this.
On i want to add check all functionality, on all pages. And on click of button want to retrieve all value of checked items.
Can anyone guide me how to do it in simplest way to do Check all option in datatable?
On i want to add check all functionality, on all pages. And on click of button want to retrieve all value of checked items.
Can anyone guide me how to do it in simplest way to do Check all option in datatable?
This discussion has been closed.
Replies
any solutions????
HTH, jim
Can you provide me sample link or docs for same?
Thanks once again.
Failing that - if you want to just check checkboxes, you can use standard jQuery stuff, with fnGetNodes. Something like:
[code]
$('td input', oTable.fnGetNodes()).attr('checked', 'checked');
[/code]
Allan
i will try and let you know.