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
450
Global search in hierarchical grid including parent and child grid
posted

I do have hierarchical grid and there are two sub grids under one parent node. I want to search a text and it should search in entire grid including parent and child grids . I do not want to expand each sub grids and search for the specific text.

for filtering, we are using below code:

features: [      

                    {

                        name: "Filtering",

                        inherit: true

                    }

                ]

  • 1080
    Offline posted

    Hi Tapas,

    Thank you for posting in our community.

    What we provide at this point is filterByText method of igDataSource. This method filters the data source locally by text. If “fields” parameter is set search is performed only in the listed fields otherwise search is performed by all fields. However, this method works per level (either child or parent) and does not work for the entire hierarchy.