Welcome to the jQuery feedback portal. We’re happy you’re here! If you have feedback on how to improve the jQuery, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

When trying to use tab navigation to input queries into FilterBar input boxes on a TreeGrid, focus will not shift from one input box to the next when pressing the tab key. Here is the code that I have used to set up the TreeGrid and FilterBar:

@(Html.EJ().TreeGrid("TreeGridContainer")
    .CssClass("TreeTable")
    .Datasource(Model.TreeGridObjectList)
    .ChildMapping("Children")
    .AllowTextWrap(true)
    .EnableCollapseAll(true)
    .AllowSelection(false)
    .AllowFiltering(true)
    .FilterSettings(filtered =>
    {
        filtered.FilterHierarchyMode(TreeGridFilterHierarchyMode.Both);
        filtered.FilterBarMode(TreeGridFilterBarMode.Immediate);
    })
    .Columns(co =>