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
Uncaught TypeError: Cannot read property 'length' of undefined
at Object.ts.setFilters (widget-filter.js:1884)
at Object.bindSearch (widget-filter.js:784)
at Object.init (widget-filter.js:526)
at Object.format (widget-filter.js:65)
at Object.applyWidgetId (jquery.tablesorter.js:2000)
at Object.applyWidget (jquery.tablesorter.js:2055)
at Object.setup (jquery.tablesorter.js:320)
at HTMLTableElement.<anonymous> (jquery.tablesorter.js:2533)
at Function.each (jquery-latest.min.js:2)
at r.fn.init.each (jquery-latest.min.js:2)
Originated in the code:
ts.setFilters = function( table, filter, apply, skipFirst ) {
var c = table ? $( table )[0].config : '',
valid = ts.getFilters( table, true, filter, skipFirst );
// default apply to "true"
if ( typeof apply === 'undefined' ) {
apply = true;
}
if ( c && apply ) {
// ensure new set filters are applied, even if the search is the same
c.lastCombinedFilter = null;
c.lastSearch = [];
tsf.searching( c.table, filter, skipFirst );
c.$table.triggerHandler( 'filterFomatterUpdate' );
}
return valid.length !== 0;
};
May it be related to recent commit?
The text was updated successfully, but these errors were encountered:
Looks like filter plugin is broken
https://mottie.github.io/tablesorter/docs/example-widget-filter-any-match.html
Here the stack trace
Originated in the code:
May it be related to recent commit?
The text was updated successfully, but these errors were encountered: