Reinit the table with "bStateSave": true

Reinit the table with "bStateSave": true

jankejanke Posts: 19Questions: 0Answers: 0
edited February 2010 in General
I have option "bStateSave": true and i want to reinit my table after filtering i try with function fnClearTable but this don't works i reset filtering with function fnFilter other suggests Thanks !!!
[code]
function cleartable()
{
//oTable.fnClearTable(0);
//oTable.fnClearTable(1);
for ( var i=0 ; i<4 ; i++ )
{
oTable.fnFilter('',i);
}
oTable.show();
}
[/code]

Replies

  • allanallan Posts: 63,498Questions: 1Answers: 10,471 Site admin
    Perhaps this will help to reset all filters: http://datatables.net/forums/comments.php?DiscussionID=997 ?

    Allan
This discussion has been closed.