I want to set focus to the default 'add-row' in an UltraGrid and put that row in edit mode. How can I access this row? In the documentation this row is referred to as the template add-row and allows the user to add a new row by simply typing into it.
Thanks in advance.
Jay
Hello Jay,
I acheived that functionality as follows:
this.ultraGrid1.Rows.TemplateAddRow.Activate();
if (this.ultraGrid1.ActiveRow.Cells[0].CanEnterEditMode)
{
this.ultraGrid1.ActiveRow.Cells[0].Activate();
this.ultraGrid1.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.EnterEditMode, false, false);
}