Currently, this behavior is available for RadGridView and the parent row becomes current/selected after expanding. Please refer to the attached gif file for RadGridView and the missing functionality for RadVirtualGrid.
Hello, Bert,
Thank you for bringing this to our attention. We will do our best to introduce similar experience like in RadGridView.
Currently, the possible solution that I can suggest is to handle the RowExpanded event and set the current cell programmatically:
private void RadVirtualGrid1_RowExpanded(object sender, VirtualGridRowExpandedEventArgs e)
{
this.radVirtualGrid1.VirtualGridElement.CurrentCell = new VirtualGridCellInfo(e.RowIndex , this.radVirtualGrid1.CurrentCell.ColumnIndex , this.radVirtualGrid1.MasterViewInfo);
}
I hope this will help.
Regards,
Dess | Tech Support Engineer, Principal
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.