I need restart all the filters from datatable, and set the pagination to the default value allways than I change the url
Any idea?
⚠ In case you've missed it, we have migrated to our new website, with a brand new forum. For more details about the migration you can read our blog post for website migration. This is an archived forum. ⚠
Posted 29 September 2015 - 18:35 PM
I need restart all the filters from datatable, and set the pagination to the default value allways than I change the url
Any idea?
Posted 29 September 2015 - 22:13 PM
I solved my own issue.
I set:
var use_storage = false;
on datatables.js. Maybe isn't the best solution but it works.
Regards
Posted 25 February 2016 - 03:10 AM
Is working for me too.
Change from
var use_storage = supports_html5_storage();
to
var use_storage = false;
Dunno if this is the best way.