我是煎茶触摸的初学者,所以我有一些基本问题。
我在 css 的面板中添加了背景图像:
#inputPanel{
background:url(../i/input-bg.png) no-repeat left top;
}
每次显示面板时,我都想更改背景图像:
this.inputPanel = new Ext.form.FormPanel({
cls:'panel',
id:'inputPanel',
items:[],
dockedItems:[],
listeners:{
beforeshow:function(){
if(showImageAAA)
// Change the background image to AAA
else
// Change the background image to BBB
},
}
});
有什么简单的方法吗?谢谢。