extjs动态显示图片

转自:http://blog.csdn.net/windxxf/article/details/5798683

xtype: 'box', //或者xtype: 'component',  
width: 132,  
id: 'imagebox',  
name: 'imagebox',  
height: 136,    
autoEl: {  
   tag: 'img',    //指定为img标签      
   src: 'images/slogo.gif'    //指定url路径      
}  


Ext.getCmp("imagebox").getEl().dom.src = newsrc;  

你可能感兴趣的:(ext)