extjs4.1 radiogroup数据库取值并选中,尽量不重写ext的checkbox的方法

xtype:'fieldset',title:'物业难易程度(10分)',collapsible:true,defaults:{labelWidth:100,anchor... xtype : 'fieldset',
title : '物业难易程度(10分)',
collapsible : true,
defaults : {
labelWidth : 100,
anchor : '50%',
layout : {
type : 'hbox',
defaultMargins : {
top : 0,
right : 5,
bottom : 0,
left : 0
}
}
},
items : [ {
xtype : 'radiogroup',
fieldLabel : '物业难易程度',
combineErrors : true,
msgTarget : 'under',
name:'build',
defaults : {
hideLabel : true,
flex : 1
},
id : 'wuyenum',
items : [ {
boxLabel : '难',
name : 'build',
inputValue : 1,
id:'困难'
}, {
boxLabel : '中',
name : 'build',
inputValue : 4,
id:'中等',
}, {
boxLabel : '易',
name : 'build',
inputValue : 10,
id:'简单'
}, ]
},

],
展开
 我来答
翱记蹈cP
2015-04-16 · TA获得超过349个赞
知道大有可为答主
回答量:1261
采纳率:0%
帮助的人:828万
展开全部
protected void Page_Load(object sender, EventArgs e)
{
CheckBox chk = new CheckBox();
chk.Text = "testall"; // 这里可以换成数据库的内容
chk.CheckedChanged += new EventHandler(chk_CheckedChanged);
chk.AutoPostBack = true;
Page.Form.Controls.Add(chk);

for (int i = 0; i < 10; i++)
{
CheckBox chk2 = new CheckBox();
chk2.Text = "test" + i.ToString(); // 这里可以换成数据库的内容
chk2.Checked = (i % 3 == 0); // 这里可以换成数据库的内容
Page.Form.Controls.Add(chk2);
}

}

void chk_CheckedChanged(object sender, EventArgs e)
{
CheckBox all = sender as CheckBox;
foreach(Control ctl in Page.Form.Controls)
{
if (ctl is CheckBox)
{
CheckBox chk = ctl as CheckBox;
chk.Checked = all.Checked;
}
}
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式