how can i save the same status for each table in my project

how can i save the same status for each table in my project

kenzakenza Posts: 1Questions: 1Answers: 0
edited June 2015 in Free community support

I want when I change the status of a table ( example : number of lines per page ) , the change is recorded and applied to all the tables , I tried with stateSave: true , but it is saved only for the table I changed status

``` $('#tab1').dataTable({
"order": [[0, "desc"]],
stateSave: true
});

            $('#tab2').dataTable({
                "order": [[0, "desc"]],
                 stateSave: true
            });
            $('#tab3').dataTable({
                "order": [[0, "desc"]],
                stateSave: true
            });`
This discussion has been closed.