如何将非交互式默认过滤器应用于 Tablefilter?
show rows where field_1="variable"
加载表格时,默认情况下类似但已建立。
谢谢!
如何将非交互式默认过滤器应用于 Tablefilter?
show rows where field_1="variable"
加载表格时,默认情况下类似但已建立。
谢谢!
从 2.10.8 开始,另一种解决方案是将所需的过滤器添加到标题列的属性中(如此处data-value
回答。)
<table id="table">
<thead>
<tr>
<th>...</th>
...
<th data-value="abc">...</th>
</thead>
<tbody>
...
</tbody>
</table>
更多信息和示例可以在Custom Filter Widget Functions演示中找到。