Redirecting after pressing pagination button with Backbone.js
Redirecting after pressing pagination button with Backbone.js
Hello, I'm developing single page application with backbone.js and DT.
I have two tables on different urls, one of them is located on /, another one is on /table
the problem is that when I press pagination button on /table, I'm redirected to /
both table are initialized in similar way:
$('#tableID').DataTable({
"columnDefs": [{
"targets" : 'nosort',
"orderable": false
}],
stateSave: true
});
data is loaded from arguments
did anyone have same issue?