使两个复选框列表互斥
朋友们,大家好,
我知道如何使两个复选框或复选框列表中的复选框互斥。 然而我的问题与此略有不同,希望从堆栈溢出中获得一些帮助,
我有两个复选框列表,如下所示,从数据集表中我获取复选框值,
CheckBoxlist1 - Checkbox_selectColumns
if (IsDataSetNotEmpty(ds))
{
CheckBox_selectColumns.Items.Clear();
foreach (DataRow row in ds.Tables[0].Rows)
{
CheckBox_selectColumns.Items.Add(row[0].ToString());
}
}
CheckBoxlist2 - Checkbox_selectFields
if (IsDataSetNotEmpty(ds))
{
Checkbox_selectFields.Items.Clear();
foreach (DataRow row in ds.Tables[1].Rows)
{
CheckBox_selectColumns.Items.Add(row[0].ToString());
}
}
我将得到以下内容每个列表中的复选框。
Checkbox_selectColumns:员工 ID、名字、姓氏
Checkbox_selectFields:经理 ID、经理 FName、经理 LName
有什么办法,我可以使这两个复选框互斥,也就是说,如果我从第一个列表中选择任何一个或多个复选框,我应该不要从第二个列表中选择任何复选框,反之亦然。
谢谢...
Good day friends,
I got to know how we can make two checkboxes or checkboxes inside a checkbox list mutually exclusive.
However my question is little different from that, Hope to get some help from stack overflow,
Well I have two checkbox lists, as follows and from a dataset table I am getting the check box values,
CheckBoxlist1 - Checkbox_selectColumns
if (IsDataSetNotEmpty(ds))
{
CheckBox_selectColumns.Items.Clear();
foreach (DataRow row in ds.Tables[0].Rows)
{
CheckBox_selectColumns.Items.Add(row[0].ToString());
}
}
CheckBoxlist2 - Checkbox_selectFields
if (IsDataSetNotEmpty(ds))
{
Checkbox_selectFields.Items.Clear();
foreach (DataRow row in ds.Tables[1].Rows)
{
CheckBox_selectColumns.Items.Add(row[0].ToString());
}
}
I will get following checkboxes in each lists.
Checkbox_selectColumns : Employee ID, First Name, Last Name
Checkbox_selectFields : manager ID, Manager FName, Manager LName
Is there any way , I can make these two checkboxes mutually exclusive, That is if I select any one or more checkbox from first list, I should not select any checkboxes from second list and vice versa..
Thank you...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议不要循环遍历 CheckBox 中的项目,而是使用控件的
SelectedValue
属性,因为该属性在回发中仍然存在(SelectedIndex
不会)(ListControl.SelectedValue 属性):Rather than loop through the items in the CheckBox, I'd suggest using the
SelectedValue
property of the control, as that persists through postbacks (SelectedIndex
does not) (ListControl.SelectedValue Property):您好,在解决这个问题后,在蒂姆提示的帮助下,终于成功了。如果您有任何简单的解决方案,请提供解决方案。
对于第二个复选框列表,做了相反的事情。
这个工作正常,任何使代码更精致的建议都会非常有帮助......
Hi after working on this issue, with the help of Tim's tips, Finally got it worked. Please provide solutions, if you have any easy one .
For the second Checkbox List did the opposite..
This one is working correctly, any suggestions to make the code bit more refined will be really helpful...