0

我在模板字段中有 CheckBoxList:

<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。Checked 显然不是方法“CheckBoxList”的属性

4

2 回答 2

0

您需要使用 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");  
于 2013-01-23T17:40:18.770 回答
0

您应该检查所有项目并计算检查了多少。然后将该值与复选框列表中的项目总数进行比较

 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 只是显示用户是否可以与之交互。如果Enabled == false您会看到禁用的复选框

于 2013-01-23T17:47:23.170 回答