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
0
IgbGrid height virtualization
posted

The Igb grid docs say this about virualization:

it is also possible to explicitly set the IgbGrid's Width and/or Height to null which means that the related dimension will be determined by the total size of the items inside. No scrollbar will then be shown

I'd like a grid that displays at full height of all tje rows without a scrollbar. Using code similar to the following, I haven't been able to get that to work. Instead, the grid has the 100% height css styles and a scrollbar.

<IgbGrid AutoGenerate="false" Data="Data" Height="@null">

//columns

</IgbGrid>