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:'简单'
}, ]
},
], 展开
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:'简单'
}, ]
},
], 展开
1个回答
展开全部
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;
}
}
}
{
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;
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询