Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
55
Tabbing into the first Cell of a Grid
posted

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. 

Parents
No Data
Reply
  • 12773
    posted

    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,
    Dimi
    Developer Support Engineer
    Infragistics, Inc.

Children