悉野小楼

导航

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");

 

 

posted on 2010-10-28 09:56  悉野  阅读(329)  评论(0)    收藏  举报