Hi team,
Based on http://demos.telerik.com/aspnet-ajax/grid/examples/dataediting/usercontroleditform/defaultcs.aspx, where I instead is working with a gridview with a hierarchy - i'm trying to create a user control wherefrom the user can update data from both levels of the datagrid when pressing 'Edit' on an item in the top level of the grid.
My problem is that for items within the second level I cant bind them as shown below: (for the top level)
Is there a way to accomplish this?
I've also unsuccessfully been trying to access the gridview directly from the code behind file of the user control with the following:
Please let me know if you need more data and I'll try to supply it.
Thanks.
Based on http://demos.telerik.com/aspnet-ajax/grid/examples/dataediting/usercontroleditform/defaultcs.aspx, where I instead is working with a gridview with a hierarchy - i'm trying to create a user control wherefrom the user can update data from both levels of the datagrid when pressing 'Edit' on an item in the top level of the grid.
My problem is that for items within the second level I cant bind them as shown below: (for the top level)
<
telerik:RadTextBox
ID
=
"FunctionTextBox"
runat
=
"server"
Width
=
"100%"
Text='<%# DataBinder.Eval( Container, "DataItem.function_description") %>'></
telerik:RadTextBox
>
Is there a way to accomplish this?
I've also unsuccessfully been trying to access the gridview directly from the code behind file of the user control with the following:
RadGrid r = (RadGrid)this.Parent.FindControl("TerminalGrid");
Please let me know if you need more data and I'll try to supply it.
Thanks.