Why stateLoadCallaback firing twice ?
Why stateLoadCallaback firing twice ?
Uday_A
Posts: 1Questions: 1Answers: 0
Here stateLoadCallback
function firing twice.
Is this is a functionality or BUG?
How can I fix?
Can you please help me with this..
This is my code...
var defaultConfig = {
columns: tableCols,
data: [],
dom: '<"search"f>rtip1',
language: {
lengthMenu: 'MENU'
},
isFullWidth: true,
autoWidth: false,
destroy: true,
colReorder: true,
select: false,
serverSide: false,
stateSave: true,
searching: true,
scrollX: true,
stateLoadParams: function (settings, data) {
// Firing twice
console.log('load');
},
stateLoadCallback: function (settings) {
// Firing twice
console.log('save');
}
This discussion has been closed.