我正在尝试使用Tablesorter和滚动小部件。我似乎无法做到正确。似乎bootstrap.css影响了固定头的大小调整。
这是问题的example。如果我们没有bootstrap.css,那么它将如图所示here
这是Tablesorter代码:
$(".tablesorter").tablesorter({
widthFixed : true,
showProcessing: true,
headerTemplate : '{content} {icon}',
widgets: [ 'zebra', 'scroller' ],
widgetOptions : {
scroller_height : 300,
scroller_barWidth : 17,
scroller_jumpToHeader: true,
scroller_idPrefix : 's_'
}
这是HTML:
<div class="row">
<div class="span12 hidden-phone">
<table class="tablesorter">
<caption>Student Grades</caption>
<thead>
<tr><th>Name</th><th>Major</th><th>Sex</th><th>English</th><th>Japanese</th><th>Calculus</th><th class="filter-false sorter-false">Geometry</th></tr>
</thead>
<tfoot>
<tr><th>Name</th><th>Major</th><th>Sex</th><th>English</th><th>Japanese</th><th>Calculus</th><th>Geometry</th></tr>
</tfoot>
<tbody>
<tr><td>Student01</td><td>Languages</td><td>male</td><td>80</td><td>70</td><td>75</td><td>80</td></tr>
<tr><td>Student02</td><td>Mathematics</td><td>male</td><td>90</td><td>88</td><td>100</td><td>90</td></tr>
<tr><td>Student03</td><td>Languages</td><td>female</td><td>85</td><td>95</td><td>80</td><td>85</td></tr>
<tr><td>Student04</td><td>Languages</td><td>male</td><td>60</td><td>55</td><td>100</td><td>100</td></tr>
</tbody>
</table>
答案 0 :(得分:0)
该演示缺少theme.bootstrap.css
文件和一些选项(主题和uitheme小部件; updated demo)
$(".tablesorter").tablesorter({
theme: 'bootstrap', // set bootstrap theme
widthFixed: true,
showProcessing: true,
headerTemplate: '{content} {icon}',
widgets: ['zebra', 'uitheme', 'scroller'], // include uitheme widget
widgetOptions: {
scroller_height: 300,
scroller_barWidth: 17,
scroller_jumpToHeader: true,
scroller_idPrefix: 's_'
}
});
答案 1 :(得分:0)
编辑:上面的反应对我来说不起作用(Firefox 29)另一方面r0n22对注释中的scroller.js的更改确实有效。
scoller插件中有一个错误。第206行:应该是 $ hdr.width($ tbl.innerWidth())母体()宽度($ tbl.innerWidth())。。现在 它是固定的,系统工作得很好!