Hi,
In a hierarchical datagrid with two levels I am trying to keep the edited item expanded through
Does anybody have a clue why this isn't working?
Marc
In a hierarchical datagrid with two levels I am trying to keep the edited item expanded through
| Public Sub Command_Row(ByVal Sender As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) |
| If (TypeOf (e.Item) Is GridDataItem) Then |
| 'do the stuff here |
| dtgProducts.ReBind() |
| e.Item.OwnerTableView.ParentItem.Expanded = True |
| End if |
| End Sub |
Marc