bootstrap-table固定标头无法正常工作

时间:2015-04-21 19:37:26

标签: css twitter-bootstrap bootstrap-table

我使用bootstrap-table在我的项目中设置了一个表。除tbody内的滚动条外,一切正常。

那里没有滚动条。我错过了什么?我相信如果滚动条可见,那么表格功能的fixed-header也应该可以正常工作。

<table id="tblMain" class="table table-bordered table-hover" data-show-refresh="false" data-click-to-select="false" data-single-select="true" data-show-toggle="false" data-show-columns="false" data-cache="false" data-page-number="@Model.CommonVariable" data-url='@Url.Action("Index", "Home")'  data-side-pagination="server" data-pagination="true" data-search="false" data-query-params="queryParams" data-response-handler="respHandler">
    <thead class="table-head">
        <tr>
            <th data-field="id" data-formatter="SomeFunction">Item ID</th>
            <th data-field="name" data-formatter="SomeFunction2">Item Name</th>
            <th data-field="price" data-formatter="SomeFunction3">Item Price</th>
        </tr>
    </thead>
</table>

2 个答案:

答案 0 :(得分:2)

查看此fiddle ...

这不是我创造的,但我认为这正是你要找的。

    table {
        table-layout:fixed;
    }

    .div-table-content {
      height:150px;
      overflow-y:auto;
    }

答案 1 :(得分:2)

您可以将data-height选项设置为有效的固定标头功能,例如:http://issues.wenzhixin.net.cn/bootstrap-table/