Click here to Skip to main content
15,913,722 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Everybody,

I have a NestedGridView in my Child Grid i have a control called DropDownList in my Footer template , now what i want is in my DropDownSelectedIndexchanged event i want to fetch Child Grid footer control. How to do this can any one give me some solution out of this..?

C#
<asp:DataGrid id="dg1" runat="server">
<columns>
    <asp:templatefield>
        <itemTemplate>
           <asp:Label ID="lblid" runat="server" />
        </itemtemplate>
    </asp:Templatefield>

    <asp:templateField>
        <itemTemplate>
           <asp:GridView id="gv2" runat="server">
           <columns>
              <asp:TemplateField>
                  <FooterTemplate>
                       <Asp:DropDownList id="ddl1"  runat="server"  önSelectedIndexChanged="ddl_SelectedIndexChanged" AutoPostBack="true"/>
                  </FooterTemplate>
              <asp:templateField>
               <asp:TemplateField>
                    <FooterTemplate>
                         <Asp:DropDownList id="ddl2"  runat="server" />
                    </FooterTemplate>
               <asp:templateField>
             <columns>
          </asp:GridView>
       <itemtemplate>
    <asp:templatefield>
</columns>
</asp:DataGrid>


Now in my dropdwon selected index changed event i want to find the parent grid control "lblId"..

C#
protected void ddl_SelectedIndexChanged(object sender,EventArgs e)
{
    // here i want to find parent grid control "lblid".
}


Can anyone give me some solution out of this..
Posted

1 solution

You can use Row updating or row databound for this

or you can pass e.rowindex as a session or a viewstate

your can pass it to the selected index change event of the dropdwonlist
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900