I've got the following grid with grouping setup. I'd like it so that they can't remove the category group but can add and remove the other 3 .
Is that possible? thanks
<telerik:RadGrid ID="RadGrid1" runat="server" PageSize="50" AllowSorting="True" AllowMultiRowSelection="True" AllowPaging="false" ShowGroupPanel="True" OnPageIndexChanged="RadGrid1_OnPageIndexChanged" AutoGenerateColumns="False" GridLines="none" OnNeedDataSource="RadGrid1_OnNeedDataSource"> <PagerStyle Mode="NextPrevNumericAndAdvanced"></PagerStyle> <MasterTableView Width="100%" > <GroupByExpressions > <telerik:GridGroupByExpression > <SelectFields> <telerik:GridGroupByField FieldAlias="Category" FieldName="Category" /> </SelectFields> <GroupByFields> <telerik:GridGroupByField FieldName="Category" SortOrder="Ascending" /> </GroupByFields> </telerik:GridGroupByExpression> </GroupByExpressions> <Columns> <telerik:GridBoundColumn SortExpression="PatientName" HeaderText="PatientName" HeaderButtonType="TextButton" DataField="PatientName" Groupable="false" /> <telerik:GridBoundColumn SortExpression="Category" HeaderText="Category" HeaderButtonType="TextButton" DataField="Category" /> <telerik:GridBoundColumn SortExpression="LastTaskTime" HeaderText="LastTaskTime" HeaderButtonType="TextButton" DataField="LastTaskTime" /> <telerik:GridBoundColumn SortExpression="CaseStatus" HeaderText="CaseStatus" HeaderButtonType="TextButton" DataField="CaseStatus" /> </Columns> </MasterTableView> <ClientSettings ReorderColumnsOnClient="True" AllowDragToGroup="True" AllowColumnsReorder="True" > <Selecting AllowRowSelect="True" ></Selecting> <Resizing AllowRowResize="True" AllowColumnResize="True" EnableRealTimeResize="True" ResizeGridOnColumnResize="False"></Resizing> </ClientSettings> <GroupingSettings ShowUnGroupButton="false"> </GroupingSettings></telerik:RadGrid>