Core: update column count after reset

This commit is contained in:
Rob Garrison 2017-03-15 11:57:18 -05:00
parent 6e46f7aecb
commit c91ceeb5b1

View File

@ -1768,6 +1768,10 @@
ts.setHeadersCss( c );
ts.multisort( c );
ts.appendCache( c );
var indx;
for (indx = 0; indx < c.columns; indx++) {
c.sortVars[ indx ].count = -1;
}
if ( $.isFunction( callback ) ) {
callback( c.table );
}