Tab key does not exit from flexgrid

Posted by: yonit.chavshosh on 25 March 2019, 5:47 am EST

    • Post Options:
    • Link

    Posted 25 March 2019, 5:47 am EST

    hi,

    i work in c#- winforms.

    i have a form that contains a c1flexgrid and other regular controls.

    i want to move between the controls with the tab key,

    but when the tab key arrives to the flex grid,

    it does not exit from it and does not move to the next control.

    what can i do?

    thank’s

  • Posted 26 March 2019, 4:44 am EST

    Hi Yonit,

    To allow Tab key to switch between controls , first set the TabStop property of each control to True so that it will allow Tab key to focus.

    Also, make sure that the KeyActionTab property of C1FlexGrid is set to ‘KeyActionEnum.None’ so that the grid will not trap the TAB key and use it for navigating cells.

    
    c1FlexGrid1.KeyActionTab = KeyActionEnum.None;
    
    

    You can learn more about the property from here:

    https://help.grapecity.com/componentone/NetHelp/c1flexgrid/webframe.html#C1.Win.C1FlexGrid.4~C1.Win.C1FlexGrid.C1FlexGridBase~KeyActionTab.html

    Thanks,

    Pragati

Need extra support?

Upgrade your support plan and get personal unlimited phone support with our customer engagement team

Learn More

Forum Channels