Extjs中iconCls定义图片显示问题
var panel = new Ext.Panel({
        region: 'west',
        id : 'west-panel', 
        title : '功能列表',
        layout : 'accordion', 
        layoutConfig : { 
            animate : true 
        }, 
        items : [{
            title : '个人中心',
            html : Ext.getDom('stuinfos').innerHTML,
            border : false,
            autoScroll : true,
            
iconCls : 'user'
css文件中定义:
<style type="text/css">
.user {
	background-image: 
url(../ext/examples/shared/icons/fam/
user.png);
}
user.png图片不显示
.unit {
	background-image: url(../ext/examples/shared/icons/fam/application_view_list.png);
}定义这个则图片可以显示
图片在目录下均有
              
------解决方案--------------------user.png没加载是么?还是加载了,没显示?