本文主要是介绍bootstrap editable 行内编辑,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
除了那些bootstrap/bootstrap table的js , css之外,要额外添加editable的文件:
<link href="../assets/css/bootstrap-editable/bootstrap-editable.css" rel="stylesheet">
<script src="../assets/js/bootstrap-editable/bootstrap-editable.js"></script>
<script src="../assets/js/bootstrap-editable/bootstrap-table-editable.js"></script>
然后写js
$('#tableId').bootstrapTable({data:data['data'],pagination: true,locale:"zh-US",pageSize: 5,singleSelect: false,clickToSelect: true,//一定要写!!可以选择:用于edittablesidePagination: "client",columns: [{title: '姓名',field: 'name',align: 'center',valign: 'middle'
这篇关于bootstrap editable 行内编辑的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!