Hello,
I have a templated column on the grid everything seems to work fine, except for grouping. if i do not create template then grouping works, but not when it has template. In the example below, the second column works but not the first one. Does anyone has an idea how can templated column be grouped?
<
telerik:RadGridView x:Name="_gridViewResourceRequirement" Grid.Row="2" CanUserFreezeColumns="True" ShowGroupPanel="True" AutoGenerateColumns="False"
RowLoaded="_gridViewResourceRequirement_RowLoaded" SelectionChanged="_gridViewResourceRequirement_SelectionChanged"
CellEditEnded="_gridViewResourceRequirement_CellEditEnded" VerticalAlignment="Stretch" IsFilteringAllowed="True"
AutoExpandGroups="True" FrozenColumnCount="0">
<telerik:RadGridView.Columns>
<telerik:GridViewDataColumn HeaderTextAlignment="Center" Width="200" Header="Resource Name"
IsFilterable="True" IsGroupable="True">
<telerik:GridViewDataColumn.CellTemplate>
<DataTemplate>
<TextBlock x:Name="_textBlockResourceName" Text="{Binding ResourceId, Converter={StaticResource _resourceNameConverter}}"/>
</DataTemplate>
</telerik:GridViewDataColumn.CellTemplate>
<telerik:GridViewDataColumn.CellEditTemplate>
<DataTemplate>
<ComboBox x:Name="_resourceComboBox"
DisplayMemberPath="Name" Loaded="_resourceComboBox_Loaded"
DropDownOpened="_resourceComboBox_DropDownOpened"
DropDownClosed="_resourceComboBox_DropDownClosed"/>
</DataTemplate>
</telerik:GridViewDataColumn.CellEditTemplate>
</telerik:GridViewDataColumn>
<telerik:GridViewComboBoxColumn HeaderTextAlignment="Center" Header="Type" DataMemberBinding="{Binding TypeEnum, Mode=TwoWay}"
UniqueName="Type" IsFilterable="True"/>
</telerik:RadGridView.Columns>
</telerik:RadGridView>
