Is there any property and or other means by which the first cell can be tabbed into of a grid? By default my grid appears to gain focus but there is no way by which I can actually tab into a cell.
Hello, You can just add call perform action in order to get active cell to be in edit mode. First set the cell to be active. And the first event that respond to the activation of the Form is Form1_Enter.this.ultraGrid1.ActiveCell = this.ultraGrid1.Rows[0].Cells[1];this.ultraGrid1.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.EnterEditMode, false, false);I hope this helps.Sincerely,DimiDeveloper Support EngineerInfragistics, Inc.
I have a grid with default focus on my form. The first cell does get active appearance to it but i want the cell to enter the edit mode, when the form shows up. How do i acheive this ?
Hello, I am not sure what you are asking. The default behavior is that the grid is making the first row active. If you want to make only one cell active and tab trough the cells. You can try when the grid take a focus to make the firs cell active. void ultraGrid1_Enter(object sender, EventArgs e) { this.ultraGrid1.ActiveCell = this.ultraGrid1.Rows[0].Cells[1]; }I hope this is solving your issue.Sincerely,DimiDeveloper Support EngineerInfragistics, Inc.