在asp.net中将gridview单元格值显示到文本框

时间:2015-08-04 05:48:12

标签: asp.net gridview row editing

我正在使用asp.net嵌套gridview,我需要将gridview单元格值显示在文本框中进行编辑。

我的问题是,如果我同时使用了模板字段和放大器,我不知道如何向文本框显示值。绑定列。这是我的aspx。

    <Columns>
    <asp:TemplateField ItemStyle-Width="10px">
      <ItemTemplate>
      <img alt = "" style="cursor: pointer" src="images/plus.png"  />
      <asp:Panel ID="pnsections" runat="server" Style="display: none;">
      <asp:HiddenField ID="HdnId" runat="server" Value='<%# Eval("Dept_Name") %>' />
      <asp:GridView ID="gvsections" Width="100%" CssClass="table table-bordered table-hover" runat="server" AutoGenerateColumns="false" OnRowDataBound="gvsections_rowdatabound"  OnRowEditing="gvsections_rowediting"  DataKeyNames="Dept_Name">

      <Columns>

      <asp:BoundField ItemStyle-Width="150px" DataField="currdept" HeaderText="Deptcurrent" />
      <asp:BoundField ItemStyle-Width="150px" DataField="Dept_Name" HeaderText="SectionName" />
      <asp:BoundField ItemStyle-Width="150px" DataField="FLDTYPE" HeaderText="Type" HeaderStyle-CssClass=" visible-lg visible-md" ItemStyle-CssClass=" visible-lg visible-md " />

      </Columns>
   </asp:GridView>
   </asp:Panel>
   </ItemTemplate>
 </asp:TemplateField>
 <asp:BoundField ItemStyle-Width="150px" DataField="Dept_Name" HeaderText="Department" />
 <asp:BoundField ItemStyle-Width="150px" DataField="FLDTYPE" HeaderText="Type" />

    </Columns>
</asp:GridView>

2 个答案:

答案 0 :(得分:0)

如果你在网格视图的 selectedindexchanging 事件中编写代码,那么试试这个并且它会起作用

GridViewRow row = gvdepts.Rows[e.NewSelectedIndex];
deptname.Text=row.Cells[1].Text;

我希望这会有所帮助

答案 1 :(得分:0)

在你的代码中,3个字段包含dept name - HdnId(Hiddenfield),内部gridview绑定字段(Dept_Name),外部gridview绑定字段(Dept_Name)。

1. deptname.Text = (gvdepts.SelectedRow.Cells[1].FindControl("HdnId") as HiddenField).Value; 

2. deptname.Text = (gvdepts.SelectedRow.Cells[1].FindControl("gvsections") as GridView).Rows[0].Cells[2].Text;

 3. deptname.Text = gvdepts.SelectedRow.Cells[2].Text;

可以通过此链接解决您的问题: http://www.aspforums.net/Threads/133072/Edit-Update-Delete-in-Nested-Child-GridView-in-ASPNet/