先定义一个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
}]
}]
}
});
效果图:
满意请采纳。