复选框列表返回已选中
本文关键字:返回 列表 复选框 | 更新日期: 2023-09-27 17:55:52
我在模板字段中有复选框列表:
<asp:TemplateField HeaderText="Check Box">
<ItemTemplate>
<asp:CheckBoxList ID="CheckBoxList1" runat="server">
<asp:ListItem></asp:ListItem>
</asp:CheckBoxList>
</ItemTemplate>
</asp:TemplateField>
我想检查是否已选中所有复选框。如果尚未选中所有复选框,则无法前进。
for (int i = 0; i < GridView1.Rows.Count; i++)
{
GridViewRow row = GridView1.Rows[i];
bool isChecked = ((CheckBoxList)row.FindControl("CheckBoxList1")).Checked;
if (isChecked)
Response.Write("Its Checked");
else
Response.Write("Not Check");
}
问题是它总是返回"它已检查",即使它没有。 可能是因为我不能在模板视图中使用复选框列表。并且选中显然不是"CheckBoxList"方法的属性
您需要使用 CheckBoxList.SelectedItems.Count 将其与总项目进行比较,以确定是否选择了所有项目。
CheckBoxList CheckBoxList1 = ((CheckBoxList)row.FindControl("CheckBoxList1")).Enabled;
int i = 0;
for(i = 0; i < CheckBoxList1.Items.Count; i++)
if (!CheckBoxList1.Items[i].Checked)
break;
if(i == CheckBoxList1.Items.Count)
Response.Write("Its Checked");
else
Response.Write("Not Check");
您应该遍历所有项目并计算检查了多少个项目。然后将该值与复选框列表中的项目总数进行比较
for (int i = 0; i < GridView1.Rows.Count; i++) {
GridViewRow row = GridView1.Rows[i];
if(row.RowType == DataControlRowType.DataRow) {
CheckBoxList CheckBoxList1= row.FindControl("CheckBoxList1")) as CheckBoxList;
//CheckBoxList CheckBoxList1= row.Cells[cbCellIndex].FindControl("CheckBoxList1")) as CheckBoxList;
int checkedCount = 0;
foreach (ListItem item in CheckBoxList1.Items) {
checkedCount += item.Selected ? 1 : 0;
}
if (checkedCount == CheckBoxList1.Items.Count) {
//all checked
}
else if (checkedCount == 0)
{
//none checked
}
}
}
}启用只是显示用户是否可以与之交互。如果Enabled == false
,您将看到禁用的复选框