我们使用 jquery tablesorter 2.0 插件创建了一个带有排序表的应用程序该应用程序还包括 iscroll。
现在我们需要冻结 thead 并且只有 tbody 应该滚动。
请帮我解决一些问题
我们正在使用以下代码,但它不起作用
$("table").tablesorter({
widthFixed : true,
showProcessing: true,
headerTemplate : '{content} {icon}',
widgets: [ 'uitheme', 'zebra', 'stickyHeaders', 'filter' ],
widgetOptions: {
stickyHeaders : 'tablesorter-stickyHeader',
zebra : ["ui-widget-content even", "ui-state-default odd"],
uitheme : 'jui'
}
});
});