Hi,
I have the following xaml code , but I do not get any column filter shown, not even the default one(when removing the filter control) , is it because I am binding to an object and not a foreign key (ID) as the example you have in a blog post. http://blogs.telerik.com/pavelpavlov/posts/10-01-20/filtering-gridviewcomboboxcolumn-in-radgridview-for-wpf.aspx. Is it possible to filter when binding to an object ?.
I have the following xaml code , but I do not get any column filter shown, not even the default one(when removing the filter control) , is it because I am binding to an object and not a foreign key (ID) as the example you have in a blog post. http://blogs.telerik.com/pavelpavlov/posts/10-01-20/filtering-gridviewcomboboxcolumn-in-radgridview-for-wpf.aspx. Is it possible to filter when binding to an object ?.
<telerik:GridViewComboBoxColumn UniqueName="cmbActionBy" ShowFieldFilters="True" IsFilterable="True" IsComboBoxEditable="True" Header="Action by" DataMemberBinding="{Binding Path=tblContact}" telerik:TextSearch.TextPath="ShortName" DisplayMemberPath="ShortName" Width="80" SortMemberPath="tblContact.ShortName" EditorStyle="{Binding Source={StaticResource MyStyle}}"> <telerik:GridViewComboBoxColumn.FilteringControl> <filter:ComboColumnFilteringControl IsActive="True" IsEnabled="true"></filter:ComboColumnFilteringControl> </telerik:GridViewComboBoxColumn.FilteringControl> </telerik:GridViewComboBoxColumn>