0
點擊基於row.id行我有一個Bootstrap Table設置是這樣的:隱藏使用引導表
<table data-toggle="table"
id="table"
data-id-field="id">
<thead>
<tr>
<th data-field="id">ID</th>
<th>Name</th>
...
</tr>
</thead>
<tbody>
<tr>
<td>11</td>
<td>bootstrap-table</td>
...
</tr>
</tbody>
</table>
我試圖隱藏行的正在使用該行的ID點擊:
$(function() {
$('#table').on('click-row.bs.table', function (e, row, $element) {
$table.bootstrapTable('hideRow', { uniqueId: row.id});
});
});
但沒有任何反應。到目前爲止,我的故障排除似乎表明我沒有{ uniqueId: row.id}
部分的權利。
的Bootstrap Table docs爲hideRow
說:
隱藏指定的行。參數必須至少包含以下屬性中的一個:index:行索引。 uniqueId:該行的 uniqueId的值。
這是一個fiddle顯示我點擊時沒有隱藏行的問題。
我如何得到這個工作?
但該文檔顯示我應該能夠使用UNIQUEID領域,如在所列出的部分? – 43Tesseracts
它似乎不適用於uniqueID –
好,所以我不瘋狂。什麼是'isIdField:true'?它也適用於此刪除。 – 43Tesseracts