【发布时间】:2015-11-02 21:23:29
【问题描述】:
我不想要分页...或可滚动表格。我不想指定高度,但如果您不指定,则默认为某个值。
我只想要带有排序选项的常规旧表。
(我正在使用引导表)
【问题讨论】:
标签: bootstrap-table
我不想要分页...或可滚动表格。我不想指定高度,但如果您不指定,则默认为某个值。
我只想要带有排序选项的常规旧表。
(我正在使用引导表)
【问题讨论】:
标签: bootstrap-table
只能设置sortable列选项,不能设置height选项:
<table data-toggle="table"
data-url="your-json-url">
<thead>
<tr>
<th data-field="id" data-sortable="true">ID</th>
<th data-field="name" data-sortable="true">Name</th>
<th data-field="price" data-sortable="true">Price</th>
</tr>
</thead>
</table>
【讨论】: