javascript - TableSorter + Filter > tskeyCodes = undefined -
i've downloaded latest version of tablesorter , filter widget.
unfortunately filters not working. error when apply filter is: 'uncaught typeerror: cannot read property 'enter' of undefined'. when debug debugger says tskeycodes undefined.
i apply scripts in mvc azure application.
the script of table sorter looks this:
$(".tablesorter").tablesorter({ widgets: ["zebra", "filter"], widgetoptions: { filter_cssfilter: '', filter_childrows: false, filter_hidefilters: false, filter_ignorecase: true, filter_savefilters: true, filter_searchdelay: 300, filter_startswith: false, filter_hidefilters: false, filter_external: 'input.search', filter_reset: '.reset', filter_functions: { // add select menu column 0: true, 1: true, 4: true }, } });
this behavior present in chrome in ie.
what doing wrong?
Comments
Post a Comment