I have a hierarchical grid. To fill the child grid I need to know a parent ID value.
Can not access to that with GetDataKeyValue because parent grid is autogenerate.
So how can access to the parent grid by column index?
Thank you
Can not access to that with GetDataKeyValue because parent grid is autogenerate.
So how can access to the parent grid by column index?
Protected Sub RadGrid1_DetailTableDataBind(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridDetailTableDataBindEventArgs) Handles RadGrid1.DetailTableDataBind
Dim dataItem As GridDataItem = CType(e.DetailTableView.ParentItem, GridDataItem)
Dim ID As String = dataItem.Item(?).Text
Thank you