HI
I am using the RadGrid in silverlight .Net, in this grid column was a combobx and the DateMemberBinding is Interger(Primary Key) and the DisplayColumnName="Qualification", ValueColumnName="QualificationNo_PK" when I tried to filter, the "contains" filter options are not showing for this column.
I need "contains" filter options for the Integer DataType, for varchar it's showing like that I need. These are the following code I used for the column,
<smInput:ComboBoxColumn2
ColumnWidths="0,1"
DataMemberBinding="{Binding QualificationNo, Mode=TwoWay}"
DisplayColumnName="Qualification"
Header="{Binding "Qualification", Source={StaticResource LocalizedStrings }}"
IsFilterable="True"
IsSortable="True"
UniqueName="Qualification"
ComboBoxMargin="0"
SearchType="SubString"
ValueColumnName="QualificationNo_PK"
Width="Auto" />
The ComboBoxColumn2 is a kendo combobox, I know the DataType ID doesn't have the "Contains" filter but am showing the Description for the ID so I need the "Contains" filter, please help me in this issue.