私はsenchatouchの初心者なので、いくつかの基本的な質問があります。
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
},
}
});
それを行う簡単な方法はありますか?ありがとう。