使用tablesorter和滚动小部件,我注意到IE 11中的标题宽度计算错误(也测试了最后一个Firefox:这没关系)。问题是,如果不需要水平滚动条,则标题宽度会考虑有一个。是否有足够的数据显示水平滚动条,那就没问题。
我的参数是:
$("#mytable").tablesorter(
{
theme: 'bootstrap',
headerTemplate: '{content} {icon}',
widgets: ["zebra",'filter','scroller','uitheme'],
widthFixed: true,
sortList: [[0, 0]],
widgetOptions:
{
scroller_height : 600,
scroller_upAfterSort: true,
scroller_jumpToHeader: true,
filter_cssFilter: 'tablesorter-filter',
filter_childRows: false,
filter_startsWith: false,
filter_ignoreCase: true,
filter_searchDelay: 300,
filter_functions:
{
}
}
});
我发现这个唯一有趣的选择是:
scroller_barWidth: -7,
这可以强制标题与主体对齐,但只有没有滚动条(现在滚动条标题太大)。
有什么想法吗?
答案 0 :(得分:1)
我注意到问题只发生在偶数行,如果有文本区域,并且这些文本区域有填充(是5px 10 px)=>我删除了填充,没关系