I created a Hierarchical Grid and everything works great.
I placed the RadGrid inside my RadPanelBar under
<
telerik:RadPanelItem runat="server" Text="Pages and Media" Expanded="True">
<Items>
<telerik:RadPanelItem runat="server">
<ItemTemplate>
"My grid"
It works fine inside the panelbar.
However, I need to access
Protected Sub RadGrid1_UpdateCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles RadGrid1.UpdateCommand
Dim editedItem As GridEditableItem = TryCast(e.Item, GridEditableItem)
'Access the textbox from the edit form template and store the values in string variables.
Dim mediaType As String = (TryCast(editedItem("mediaType").Controls(0), TextBox)).Text
How can I accomplish this?