You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
new $.fn.dataTable.FixedColumns(table, {
leftColumns: 2
});
Above code gives error in fixedCoulmn function.
// In fixedCoulmn Function
var dtSettings = $.fn.dataTable.Api ?
new $.fn.dataTable.Api( dt ).settings()[0] :
dt.fnSettings();
Above codes return dtSettings undefined which in return gives error on further execution of the code.
The text was updated successfully, but these errors were encountered:
new $.fn.dataTable.FixedColumns(table, {
leftColumns: 2
});
Above code gives error in fixedCoulmn function.
// In fixedCoulmn Function
var dtSettings = $.fn.dataTable.Api ?
new $.fn.dataTable.Api( dt ).settings()[0] :
dt.fnSettings();
Above codes return dtSettings undefined which in return gives error on further execution of the code.
The text was updated successfully, but these errors were encountered: