我是sencha touch的初學者,所以我有一些基本問題。在sencha touch中更改背景圖像
我在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
},
}
});
有沒有什麼簡單的方法去做吧?謝謝。
謝謝Scott。請在另一個答案中看到我的意見。 – subchap
第二次,如果您之前被隱藏,則應該獲取inputPanel並在get call show inputPanel中設置其樣式。 –