我正在使用RoR应用程序并尝试实现jquery-tablesorter
的全文搜索此处示例:http://jsfiddle.net/BCreb/104/
jsfiddle中的一切都很好用,但是当我将它设置为应用程序并尝试写入搜索框时,浏览器会尖叫:
Uncaught TypeError: Cannot read property 'length' of undefined
它位于文件 jquery.tablesorter.filter.mod.js:120
var allRows = table.config.cache.row;
var resultRows = [];
var allRowsCount = allRows.length; <-- here is line 120
我无法弄明白,为什么我会收到此错误。任何帮助表示赞赏!