state save is not working

state save is not working

bryands1bryands1 Posts: 3Questions: 2Answers: 0
edited July 2014 in Free community support

Hello,
I am initializes a table as follows:

var table = $('#example').dataTable(
        {"bPaginate":false, "bSearchable":false,"bInfo":false,"bFilter":false,
            "stateSave": true,
            "stateDuration": 10}
    );

html:

<table id="example" border=1 class="display" cellspacing="0" width="100%">

I populating the table on page and going to another page in the same project with :

window.location.href = "page2.html";

Then return to the first page with:

window.location.href = "page1.html";

When I return to the first I would like for the table to still have the data in it, but it is empty.
Any help here would be greatly appreciated.

thanks

Answers

  • allanallan Posts: 62,858Questions: 1Answers: 10,344 Site admin

    Please link to a test case showing the issue, as required in the forum rules.

    Allan

This discussion has been closed.