我正在使用带有粘性标题小部件的jquery插件tablesorter。
在文档中指出,添加了一个名为sticky-false的类。
但是我无法隐藏特定列上的粘性标题。

我的javascript上没有设置任何选项,因此我启动了tablesorter。 ...有效。

$('#table').tablesorter({widgets: ['zebra','stickyHeaders', 'filter'] }


并在我的桌子上添加以下内容,... sticky-false将无法正常工作,其他两项仍可工作但输入框不会消失

<th class="sticky-false filter-false sorter-false">Table</th>


我正在使用TableSorter 2.14.5和tableSorter 2.8+小部件

有人知道隐藏输入框的方法吗?

最佳答案

“ sticky-false”类用于整个行,而不是单个列。

<tr class="sticky-false">
    <th class="sorter-false" colspan="5">This row will not be sticky</th>
</tr>
<tr>
    <th class="filter-false sorter-false">Column 1</th>
    ...
    <th>Column 5</th>
</tr>


如果要隐藏列过滤器,请使用以下CSS:

.tablesorter-filter-row .disabled { display: none; }

08-06 04:49