数据问题显示mvc表

时间:2016-02-08 07:22:49

标签: asp.net-mvc bootstrap-table

我有一个显示数据的表格。现在我为我的表添加了data-show-columns="true"

和表格看起来如下。 enter image description here

当我想隐藏Created Date列时。表头隐藏和内容相同。但它适用于其他专栏,如名字和电子邮件等  enter image description here

下面是我的表格代码。

<table class="table table-hover table-bordered" id="table-candidates" data-show-columns="true"
           data-sort-name="createdDate" data-toolbar="#candidate-list-table-toolbar" data-sort-order="desc" data-show-export="true" data-filter-control="false"
           data-show-multi-sort="false">
        <thead>
            <tr>
                <th data-field="createdDate" data-sortable="true" data-formatter="formatDate">Created Date</th>
                <th data-field="fullName" data-sortable="true" data-formatter="formatCandidateFullName">Full Name</th>
                <th data-field="phoneNumber" data-sortable="true">Phone</th>
                <th data-field="userName" data-sortable="true">Email</th>
                <th data-field="technicalOrFunctional" data-sortable="true">Technical/Functional</th>
            </tr>
        </thead>
    </table>

更新

当列处于排序状态时,我们才会收到此问题,如果选择了全名进行排序,那么我们会遇到与firstname相同的问题

0 个答案:

没有答案