Reputation: 1395
I'm trying to hide the GroupPanel
in the Telerik UI for UWP RadDataGrid control.
radgrid.ShowGroupPanel
does not work.
Upvotes: 3
Views: 351
Reputation: 1395
UserGroupMode="Enabled" or UserGroupMode="Disabled" will show/hide the grouping panel.
@aghilpro I found the answer.
Upvotes: 2
Reputation: 4181
You can use CanUserGroup
CanUserGroup (bool)
: Gets or sets a value indicating whether the user can group the data by tha values in the column using the built-in Grouping UI.
More info : http://docs.telerik.com/devtools/universal-windows-platform/controls/raddatagrid/columns/datagrid-overview
Upvotes: 0