When using the following xaml it disables sorting and filtering. In particular it’s the DataMemberBinding.
<telerik:GridViewDataColumn Header="Name" DataMemberBinding="{Binding Path=Model[Name].Value}" IsReadOnly="True" IsSortable="True" IsFilterable="True" IsGroupable="False"/>
The following does work:
<telerik:GridViewDataColumn Header="Name" DataMemberBinding="{Binding Path=Model.Name}" IsReadOnly="True" IsSortable="True" IsFilterable="True" IsGroupable="False"/>
I did read that using DataType= will help the control know what type but that didn’t work either.
In code the Model[Name].Value would actually be Model["Name"].Value. The Model.Name access the same thing more directly.
Is this not a supported scenario or is there something that can be done?
Cheers,
Clint