editable
bootstrap table的修改,只需要引入
- bootstrap-table-editable.js
- bootstrap-editable.js
- bootstrap-editable.css即可。
列属性上添加data-editable="true"
<th data-field="address" data-align="center" data-valign="middle" data-editable="true">地址</th>
bootstrap table 插件扩展了X-editable功能。
修改table属性触发editable-save.bs.table事件。
$('#table').on('editable-save.bs.table', function (field, row, oldValue, $el) {
editSave(row,oldValue,name);
});