extjs radiogroup
{ xtype: "radiogroup", fieldLabel: "是否已审核", id: "isVerify", items: [{ boxLabel: '是', name: 'isVerify', inputValue: '1', checked: true }, { boxLabel: '否', name: 'isVerify', inputValue: '0'}]}
后台可以通过提交的isVerify得到结果
修改时,从grid的store中读取record,设定初始值,可以
代码 if (record.get("isVerify") == "1")
Ext.getCmp("updateform").form.findField("isVerify").setValue("1");
else
Ext.getCmp("updateform").form.findField("isVerify").setValue("0");
Ext.getCmp("updateform").form.findField("isVerify").setValue("1");
else
Ext.getCmp("updateform").form.findField("isVerify").setValue("0");

浙公网安备 33010602011771号