我有以下代码:
var stereo_form =new Ext.form.FormPanel({
id: "stereoInfo_panel",
autoDestroy:true,
frame: true,
width: 410,
items:[{
xtype: 'textfield',
fieldLabel: 'DEM Resolution',
name: 'resolution'
},{
xtype: 'textfield',
fieldLabel: 'Matching Level',
name: 'matching'
},{
xtype: 'textfield',
fieldLabel: 'Size of DEM',
name: 'size'
}],
buttons: [{
text: 'Confirm',
handler: function(){//HELP ME!
}
}]
});
var w =new Ext.Window({
id: "stereoInfo_win",
title: "Stereo Reconstruction Parameters",
layout: 'form',
height: 160,
width: 350,
items: stereo_form
});
w.show();
w.focus();
3个问题:
- 我希望脚本的其余部分在显示此表单时暂停运行,直到按下按钮。
- 当按下按钮时,我希望表单被销毁。
- 按下按钮时,我希望将 3 个值传递给变量。
任何人都可以帮忙吗?
PS我只想将值分配给全局变量,而不是服务器端文件...