我在Ext JS 3.4.0中有一个TreePanel。节点通过JSON加载。
首先,我需要为所有节点提供相同的图标,无论它们是否为叶子。因此,我不希望拥有子节点的节点的“文件夹”图标。怎么可能?
答案 0 :(得分:0)
如果在JSON中将所有节点.iconCls属性设置为相同的值,则所有节点都将具有相同的图标
例如:
"iconCls": "icon-file",
"expanded": "true",
"children": [
{
"iconCls": "icon-file",
"leaf": "true"
}
图标文件是您想要的带有图标的CSS,例如:
.icon-file
{
background-image: url(../images/silk/grid.png) !important;
}