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
20
How do I collapse Blazor Grid groupings by default and/or programmatically?
posted

How do I collapse Blazor Grid groupings by default and/or programmatically?

Parents
No Data
Reply
  • 7575
    Offline posted

    Hello,


    You would need to set ‘IsGroupCollapsable’ property of the grid, something like this:

    <DataGrid @ref="DataGridRef" Height="100%" Width="100%"
    DataSource="DataSource"
    IsGroupCollapsable="true" />

    Refer to this online help document for more information.

    Sincerely,

    Divya Jain

Children