Extjs 4.x 得到form CheckBox 复选框的值

时间:2021-01-19 18:48:22
【文件属性】:
文件名称:Extjs 4.x 得到form CheckBox 复选框的值
文件大小:37KB
文件格式:PDF
更新时间:2021-01-19 18:48:22
c ec ext CheckBox(复选框)主要用来接收用户选择的选项 如图所示(请忽略UI的不好看): 该弹出窗口的主要代码如下: 代码如下: var win = new Ext.Window({ modal : true, title : ‘确定要拒绝该表吗?’, width : 500, plain : true, items : [fp] }); win.show(); 弹出的窗口是载体,items里面的[fp]是form表单的句柄。 具体定义如下: 代码如下: var fp = Ext.create(‘Ext.FormPanel’, { frame: true, fieldDefaults: {

网友评论