我正在使用适合的版本 2.0.3。
当我尝试手动排序时...
$('.footable').data('footable-sort').doSort(4, true)
...我收到以下错误:
Uncaught TypeError: Cannot read property 'sort' of undefined
at Sort.p.doSort (http://localhost:8080/js/footable.sort.js:125:23)
这很奇怪。例如, filter is working $('.footable').data('footable-filter').filter('some text')
,这意味着我的表没有问题。
检查footable代码ft.columns
是空的,所以column
是未定义的
var $table = $(ft.table),
$tbody = $table.find('> tbody'),
column = ft.columns[columnIndex],
$th = $table.find('> thead > tr:last-child > th:eq(' + columnIndex + ')'),
cls = ft.options.classes.sort,
evt = ft.options.events.sort;