博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
html中treegrid不显示根节点,treegrid如何让子节点默认不展开
阅读量:6361 次
发布时间:2019-06-23

本文共 1366 字,大约阅读时间需要 4 分钟。

treegrid怎么让子节点默认不展开

需求:内容都是动态生成的。点击父节点后才会展开子节点。

上图

10064250.jpg

10064251.png

treegrid代码

treeGrid = $('#treeGrid').treegrid({

url : '${ctx}/sys/resource/treeGrid',

idField : 'id',

treeField : 'name',

parentField : 'pid',

fit : true,

fitColumns : false,

border : false,

frozenColumns : [ [

{

field : 'id',

title : '编号',

width : 80

},{

field : 'name',

title : '资源名称',

width : 200

} ,  {

field : 'url',

title : '资源路径',

width : 150

}

] ],

columns : [ [{

width : '150',

title : '上级资源',

field : 'pid'

}, {

field : 'seq',

title : '排序',

width : 60

},{

field : 'icon',

title : '图标',

width : 150

} ,{

field : 'state',

title : '状态',

width : 60,

},{

field : 'resourcetype',

title : '资源类型',

width : 100,

formatter : function(value, row, index) {

switch (value) {

case 1:

return '按钮';

case 0:

return '菜单';

}

}

} ,{

field : 'systemtype',

title : '子系统',

width : 100,

formatter : function(value, row, index) {

switch (value) {

case 0:

return '工程公共资源';

case 1:

return '总包工程资源';

case 2:

return '分包工程资源';

case 3:

return '查询统计资源';

case 4:

return '系统管理资源';

}

}

} ] ],

toolbar : '#toolbar'

});

这些不够的话需要什么的话我贴出来

10064252.gif

------解决思路----------------------

initialState:"collapsed"

------解决思路----------------------

返回的数据增加"state":"closed",

[{

"id":1,

"name":"C",

"size":"",

"date":"02/19/2010",,

"state":"closed",,

"children":[{

"id":2,

"name":"Program Files",

"size":"120 MB",

"date":"03/20/2010",

"state":"closed",

"children":[{

转载地址:http://tiima.baihongyu.com/

你可能感兴趣的文章
在VirtualBox下安装CentOS教程(截图版)
查看>>
原创:vCenter 配置
查看>>
浅谈SQL Server中的事务日志(五)----日志在高可用和灾难恢复中的作用
查看>>
Church 整数前驱的推导
查看>>
2013年6月22日星期六
查看>>
计算机就是用命换的行业,多干一年程序猿,寿命将减少2年,干20年的编程苦力,基本60岁之前你就要OVER了...
查看>>
《嵌入式系统原理与接口技术》已经出版
查看>>
c函数调用过程原理及函数栈帧分析
查看>>
浮点纹理 opengl
查看>>
谷歌Volley网络框架讲解——Network及其实现类
查看>>
protobuf
查看>>
WPF 路径和几何图形
查看>>
ADX3000 三层网络 纠错
查看>>
C语言全局变量的定义与声明
查看>>
listView下拉刷新加载数据
查看>>
传统餐饮O2O支付体系成难题
查看>>
debian安装及使用mysql
查看>>
open()打开文件失败对应的各种错误码
查看>>
dojo.hitch 原理
查看>>
Tuple类型
查看>>