Hi all,
I have a gridview which displays product images, within that gv I have another gv which displays the supporting images. This works fine.
I want to show in my nested gv a checkbox, I only want this checkbox to show when I have entered editmode of the parent gridview. At the moment it shows on all child gridviews but I only want it for the one that is in the row being edited of the parent gv.
I am unsure of how to restrict my bool function to just the row being edited of the parent gv. Any help would be greatly received.
My markup:
<asp:Label ID="lblGrdImages" runat="server" ></asp:Label>
<asp:GridView
ID="grdImages"
runat="server"
AllowPaging="true"
ShowFooter="true"
PageSize="5"
AutoGenerateColumns="false"
OnPageIndexChanging="grdImages_PageInd ...
Go to the complete details ...