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
135
IsTabStop does not work for XamGridCell
posted

When I set IsTabStop to false in the style for a CellControl, it does not work. TabNavigation still goes to that cell.

Is there any other way to prevent tab focus on the cell control?

Parents
  • 135
    posted

    Ok, so here is more detailed explanation to my problem:

    As per requirement in my application, I have added checkbox column in my Extended XamGrid. Now, I want to allow only those cells to participate in the tab navigation which are either editable or are in add new row mode currently. I have tried setting IsTabStop property to False for this purpose in the style for CellControl and HeaderCellControl. It does work but in limited way. The keyboard focus is no more going to these cells. But say if I have 3 columns one out of which is checkbox, then below is the order of focus:

    1. Tab -> Checkbox in first row focused
    2. Tab -> Checkbox in first row focused
    3. Tab -> Checkbox in first row focused
    4. Tab -> Checkbox in second row focused
    5. Tab -> Checkbox in second row focused
    6. Tab -> Checkbox in second row focused

    Focus stays on checkbox only for as many number of times as the number of columns. Is this an issue in Infragistics grid or am I missing something here? Please help me fix this.

Reply Children