表中的复选框列无法排序

时间:2014-06-26 12:55:03

标签: jquery twitter-bootstrap-3 bootstrap-sortable

我正在使用bootstrap-sortable对表格进行排序。它对于除复选框列之外的所有列都可以正常工作。

我期待的是当某人选中取消选中复选框时,之后当有人点击表格的表格标题时,它将根据选中的复选框进行排序。

当有人查看复选框时,我还会将列的data-value设置为1。它也没有帮助

     <table id="selectedFeesToInvoiceTable" class="sortable table table-bordered table-condensed">
            <thead class="table-header">
                <tr>
                    <th class="borderFix"><input type="checkbox" id="selectAllCheckBox" style="vertical-align:-2px;margin-right:5px;" />Select all</th>
                    <th>Fee date range</th>
                    <th>Case</th>
                    <th>Transaction type</th>
                    <th class="text-right" style="padding-right:2%;">Amount</th>
                    <th class="text-right" style="padding-right:2%;border-width:2px 2px 2px 0;">Exp terms</th>
                </tr>
            </thead>
            <tbody></tbody>
        </table>

0 个答案:

没有答案