我不想要分页......或者可滚动的表格。我不想指定高度,但如果你不是默认的东西。
我只想要我的常规旧桌子和排序选项。
(我使用bootstrap-table)
答案 0 :(得分:0)
您只能设置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>