jquery tablesorter 2.0 プラグインを使用してテーブルをソートするアプリケーションを作成しました。アプリケーションには iscroll も含まれています。
ここで、thead をフリーズする必要があり、tbody のみがスクロールする必要があります。
解決策を教えてください
次のコードを使用していますが、機能していません
$("テーブル").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'
}
});
});