Datatables tfoot中的Yadcf过滤器仅适用于th标记

Datatables tfoot中的Yadcf过滤器仅适用于th标记,datatables,yadcf,Datatables,Yadcf,如何将页脚中的过滤器(tfoot)应用于此HTML <tfoot> <tr> <td></td> <td></td> </tr> </tfoot> 过滤器仅在使用标记时应用 <tfoot> <tr> <th></th>

如何将页脚中的过滤器(tfoot)应用于此HTML

<tfoot>
        <tr>
            <td></td>
            <td></td>
        </tr>
</tfoot>

过滤器仅在使用
标记时应用

<tfoot>
      <tr>
          <th></th>
          <th></th>
      </tr>
</tfoot>

我使用的是Yi2 GridView,页脚是用
标记生成的。

找到了解决方案
<tfoot>
      <tr>
          <th></th>
          <th></th>
      </tr>
</tfoot>
*版本:0.8.8.beta.28

第1909行和第1911行将
th:eq
更改为
td:eq
找到了解决方案 *版本:0.8.8.beta.28

第1909行和第1911行将
th:eq
更改为
td:eq