fnGetFilteredNodes() in not working.
fnGetFilteredNodes() in not working.
Periyasamy25
Posts: 13Questions: 0Answers: 0
I want to check all checkboxes in the pagination table with filtered rows only.
fnGetNodes() check all checkboxes.so i tried fnGetFilteredNodes() but this is not working.what is the solution for this or alternative for fnGetFilteredNodes()?
I am using
$('#allcheck').click(function()
{
$('.check_email', oTable.fnGetNodes()).attr('checked',true);//is working
//$('.check_email', oTable.fnGetFilteredNodes()).attr('checked',true);//is not working
});
fnGetNodes() check all checkboxes.so i tried fnGetFilteredNodes() but this is not working.what is the solution for this or alternative for fnGetFilteredNodes()?
I am using
$('#allcheck').click(function()
{
$('.check_email', oTable.fnGetNodes()).attr('checked',true);//is working
//$('.check_email', oTable.fnGetFilteredNodes()).attr('checked',true);//is not working
});
This discussion has been closed.
Replies
Allan