怎么能够把一个物品添加到现有的窗口中? 我尝试了胜诉,但似乎并不奏效。 为什么? 这是我的法典:
function combo_service(winTitle,desc,input_param) {
/* parametri */
param=input_param.split(","); /* della forma: param[0]="doc1:text", quindi da splittare di nuovo */
/* cosi non la creo più volte */
win;
if (!win)
var win = new Ext.Window({
//title:Ext.get( page-title ).dom.innerHTML
renderTo:Ext.getBody()
,iconCls: icon-bulb
,width:420
,height:240
,title:winTitle
,border:false
,layout: fit
,items:[{
// form as the only item in window
xtype: form
,labelWidth:60
,html:desc
,frame:true
,items:[{
// textfield
fieldLabel:desc
,xtype: textfield
,anchor: -18
}]
}]
});
win.add({
// form as the only item in window
xtype: form
,labelWidth:60
,html:desc
,frame:true
,items:[{
// textfield
fieldLabel:desc
,xtype: textfield
,anchor: -18
}]});
win.show();
};
我的法典有什么错误? 非常感谢。