BF-202205051124\Administrator 2b159b6d13 no message | il y a 2 ans | |
---|---|---|
.. | ||
assets | il y a 2 ans | |
src | il y a 2 ans | |
.gitattributes | il y a 2 ans | |
.gitignore | il y a 2 ans | |
LICENSE | il y a 2 ans | |
README.md | il y a 2 ans | |
data.json | il y a 2 ans | |
index.html | il y a 2 ans |
TreeView for bootstrapTable
http://imsense.site/bootstrapTable-treeView/
数据中必须包含parentId
属性,根节点parentId=null
,子节点中根据配置的parentId
==options[treeId]
.
例如配置项中treeId='id'
,那么子节点的parentId
属性值为父节点的id
Data must contain parentId
properties,
rootNode parentId=null
childNode parentId=options[treeId]
if options treeId='id'
childNode's parentId
property value isparnetNode's id
value
<script src="./src/bootstrap-table-treeview.js"></script>
$('#tree_table').bootstrapTable({
class: 'table table-hover table-bordered',
data: data,
pagination: false,//分页请设置为false
treeView: true,//是否开启树视图
treeId: "id",//id字段
treeField: "name",//展示树的字段
columns: [{
field: 'name',
title: '名称',
},
{
field: 'desc',
title: '详情',
},
]
});