簡體   English   中英

無法訪問動態生成的模板化字段控件

[英]Not able to access dynamically generated templated field controls

我正在為我的gridview創建動態模板字段:

 <asp:GridView ID="grdData"  runat="server" DataKeyNames = "ID" AutoGenerateColumns="false" OnRowDataBound="grdData_RowDataBound">
     <Columns>
       <asp:TemplateField>
   <HeaderTemplate>
     <asp:CheckBox ID="chkAll" AutoPostBack="true" OnCheckedChanged="OnCheckedChanged" runat="server" />
        </HeaderTemplate>
             <ItemTemplate>
                <asp:CheckBox ID="editbtn" AutoPostBack="true" OnCheckedChanged="OnCheckedChanged" runat="server"  />
             </ItemTemplate>
         </asp:TemplateField>
       </Columns>
   </asp:GridView>

下面是添加templateField的代碼:

 private void BindGridView(DataTable dtData)
        {
            foreach (DataColumn item in dtData.Columns)
            {
                TemplateField tfield = new TemplateField();
                tfield.HeaderText = item.ToString();
                grdData.Columns.Add(tfield);
            }
            grdData.DataSource = dtData;
            ViewState["dtDataTable"] = dtData;
            grdData.DataBind();

        }

在數據綁定的行中,我將文本框和標簽添加到templatefield:

protected void grdData_RowDataBound(object sender, GridViewRowEventArgs e)
        {

            DataTable dtData = (DataTable)ViewState["dtDataTable"];
            if (e.Row.RowType == DataControlRowType.DataRow)
            {
                int i = 1;
                foreach (DataColumn item in dtData.Columns )
                {
                    TextBox txtBox = new TextBox();
                    txtBox.ID = "txt"+item.ToString();
                    txtBox.Text = (e.Row.DataItem as DataRowView).Row[item.ToString()].ToString();
                    txtBox.Visible = false;
                    e.Row.Cells[i].Controls.Add(txtBox);

                    Label lblBox = new Label();
                    lblBox.ID = "lbl" + item.ToString();
                    lblBox.Text = (e.Row.DataItem as DataRowView).Row[item.ToString()].ToString();
                    e.Row.Cells[i].Controls.Add(lblBox);
                    i++;
                }

            }
        }

到目前為止,一切工作正常,正在創建網格並且正在填充值,但是當我調用下面的方法並嘗試訪問gridview控件時,它引發了對象引用錯誤:

protected void OnCheckedChanged(object sender, EventArgs e)
        {
            bool isUpdateVisible = false;
            CheckBox chk = (sender as CheckBox);
            if (chk.ID == "chkAll")
            {
                foreach (GridViewRow row in grdData.Rows)
                {
                    if (row.RowType == DataControlRowType.DataRow)
                    {
                        row.Cells[0].Controls.OfType<CheckBox>().FirstOrDefault().Checked = chk.Checked;
                    }
                }
            }
            CheckBox chkAll = (grdData.HeaderRow.FindControl("chkAll") as CheckBox);
            chkAll.Checked = true;
            foreach (GridViewRow row in grdData.Rows)
            {
                if (row.RowType == DataControlRowType.DataRow)
                {
                    bool isChecked = row.Cells[0].Controls.OfType<CheckBox>().FirstOrDefault().Checked;
                    for (int i = 1; i < row.Cells.Count; i++)
                    {
                        Label test= row.FindControl("lblName") as Label;//this is coming null

下面的代碼行拋出對象引用錯誤,因為它們無法找到控件

 row.Cells[i].Controls.OfType<Label>().FirstOrDefault().Visible = !isChecked;//this line throwing object reference error
                        if (row.Cells[i].Controls.OfType<TextBox>().ToList().Count > 0)
                        {
                            row.Cells[i].Controls.OfType<TextBox>().FirstOrDefault().Visible = isChecked;
                        }
                        if (row.Cells[i].Controls.OfType<DropDownList>().ToList().Count > 0)
                        {
                            row.Cells[i].Controls.OfType<DropDownList>().FirstOrDefault().Visible = isChecked;
                        }
                        if (isChecked && !isUpdateVisible)
                        {
                            isUpdateVisible = true;
                        }
                        if (!isChecked)
                        {
                            chkAll.Checked = false;
                        }
                    }
                }
            }
            btnUpdate.Visible = isUpdateVisible;
        }

編輯:

我嘗試在preinit事件中重新初始化控件,但還是沒有運氣:

protected void Page_PreInit(object sender, EventArgs e)
        {

            if (ViewState["gridData"] != null)
            {
                BindGridView((DataTable)ViewState["gridData"]);
            }
        }

我做錯了什么?

我在OnRowCreated中重新創建了動態gridview控件,因為此事件在每次回發中都被調用,而不是在onRowDataBound事件中被調用,並且它的工作原理就像是魅力。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM