Extjs5.0的treepanel节点上的文件夹图标怎么去掉?
1个回答
展开全部
先定义一个CSS。
<style>
.no-icon {display:none;}
</style>
然后在你的JSON树节点加上
iconCls : 'no-icon'
var menuStore = Ext.create('Ext.data.TreeStore', {
model : 'Menu',
root : {
expanded : true,
children : [{
text : 'test',
expanded : true,
children : [{
text : 'test11',
iconCls : 'no-icon',
leaf : true
}, {
text : 'test22',
iconCls : 'no-icon',
leaf : true
}]
}]
}
});
效果图:
满意请采纳。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询