2013-03-26 38 views

回答

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; 
}