Hi,
I am trying to use DataTable and Pagination with Server Side pagination.
When the page loads, I will get lot of records in the DataTable and based on the number of records per page, I get page links. But the user can select only some records in that page and save.
Suppose I got 15 pages with 10 records in each page and I selected only one record and saved.
As the records are saved, the next page should get only those saved records. In my example, as I need to get only 1 record when I click the next page link, I am trying to set the page number to 1 in the buildQueryString as I cannot pass 2 as the page number to DB procedure which will return no records.
Based on the page number 1, the DB is returning the JSON string properly but I am getting a javascript error and the DataTable always says loading.
And when I check the error console, it says I[T] is undefined in yui/build/datatable/datatable-min.js.
What might be the issue and when we will get I[T] is undefined error?
Please help