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
90
Issues with igx-grid
posted

1. Filter

If my grid is not tall enough, the filter gets cut off

What can I do to fix this?

 2. Virtualization

It seems that vertical virtualization is based on the scroll bar position rather than data set size, which requires the grid height to be set.

This would look very ugly if the data does not fill up the height of the grid.

Is there any way to set virtualization on based on dataset size?

 3. Master/Detail grid

Can I get a sample on how to set up a master detail grid?

e.g.

Parents
No Data
Reply
  • 18204
    Suggested Answer
    Offline posted

    Hello Yash,

    Thank you for posting in our forums!

    To resolve the filter height issue, you can use the following CSS to show your filter.

    igx-grid.igx-grid {
      overflow: visible !important;
    }

    Regarding virtualization, it can only be set by setting the height of the grid.

    The current grid version does not have hierarchical and tree grid features.  To enable a Master/Detail setup, you will need to create two IgxGrids, one for Master and one for Details.

    If you need any further assistance with this, please let me know.

Children
No Data