Extjs5.0的treepanel节点上的文件夹图标怎么去掉?

2025-05-11 02:18:30
推荐回答(1个)
回答1:

先定义一个CSS。

然后在你的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
            }]
        }]
    }
});


效果图:


满意请采纳。