我在EXTJS工作,請檢查下面的例子:哪個是正確的使用doLayout函數的監聽器?
var containerForm=Ext.widget('panel',{
width: 1100,
border: false,
frame: true,
"layout":"fit",
title: 'Add User',
hidden:true,
listeners:{
'afterrender': function(panelObj,eOpts)
{
panelObj.doLayout();
}
}
});
上述面板的HTML是通過AJAX響應更新爲顯示在下面的代碼:
formObj.update(jsonResp.html,true,function(){
containerForm.doLayout();containerForm.focus();
});
containerForm是自動高度面板,因爲此面板用於多個章節目標,
當「formObj.update」填充此面板的內容,它的內容加載正常,但
如果Ajax響應「jsonResp.html」有任何圖像,那個時候doLayout()函數沒有幫助正確調整面板高度,
我在2個地方添加了doLayout函數,但回調函數在上面的例子中沒有幫助我:
當我打電話的doLayout功能2秒後則只有它的正常工作:
formObj.update(jsonResp.html,true,function(){
setTimeout('containerForm.doLayout(); containerForm.focus();', 2000);
});
就是用的doLayout功能適當的聽衆?
感謝賈斯汀你的回答,我會嘗試這個解決方案 – sarvesh 2013-03-07 06:11:45