4 Answers, 1 is accepted
Hello Scott,
The control panel is not shown by default. You need to define it manually and set it to the ControlPanelItems property of RadGridView. This said, you can hide the panel by setting the ControlPanelItems property to null. I hope that helps.
Regards,
Martin Ivanov
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.
Thanks for the hint, I set a Binding to an object that does not exist, which hid the ControlPanel
ControlPanelItems="{Binding itemsControl}"
Better yet, you can just use Binding in there to default it to null:
<telerik:RadGridView
Grid.Row="2"
Grid.Column="2"
ControlPanelItems="{Binding}"
Hello Scott,
If you do not want to have binding errors, you can set the property to null like so:
ControlPanelItems="{x:Null}"
Regards,
Martin Ivanov
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.