or

Hi
I am using the WinForms RadGridView control in a project. I have achieved full CRUD with all the desired behaviours with one exception, that is when the user adds a row via the 'Click here to add a new row' line at the top of the grid the row is added fine, however the new row is not the currently selected row. On a larger data grid this often is off screen.
I can achieve it with a bit of a mash, but I'm sure that is not correct!
How do I make the newly added row the currently selected row?
Regards
Chris



AddHandler RadSplitContainer1.Splitters(0).Click, AddressOf SplitterClick
private event EventHandler _eventProxy;...var _handlers = GetEventHandlers(radTileElement, "Click");foreach (var handler in _handlers){ _eventProxy += (EventHandler)handler;}

