I have binded RadCombo in RadGridView.And i have added IsEditable="True" TextSearchMode="Contains" IsTextSearchEnabled="True" property to the RadCombobox ,however text search is not working.Kindly provide me the solution for this problem.I have copied the piece of code which has the RadComboBox.Kindly review it and let me know the solution.
<
telerik:GridViewDataColumn DataMemberBinding="{Binding PromptID}" Header="Prompts" Width="*" > <telerik:GridViewDataColumn.CellTemplate>
<DataTemplate> <input:RadComboBox x:Name="comboPrompts" IsEditable="True" TextSearchMode="Contains" IsTextSearchEnabled="True" EmptyText="Select"
DisplayMemberPath="CodeAndText"
SelectedValuePath="PromptID"
SelectedValue="{Binding PromptID}"
ItemsSource="{Binding Path=PromptsForStep, Source={StaticResource PromptsSource},Mode=TwoWay}"/>
</DataTemplate>
</telerik:GridViewDataColumn.CellTemplate>
<telerik:GridViewDataColumn.CellEditTemplate>
<DataTemplate>
<input:RadComboBox x:Name="comboPrompts" TextSearchMode="Contains" IsTextSearchEnabled="True" EmptyText="Select" IsEditable="True"
DisplayMemberPath="CodeAndText" SelectedValuePath="PromptID"
SelectedValue="{Binding PromptID}"
ItemsSource="{Binding Path=PromptsForStep, Source={StaticResource PromptsSource},Mode=TwoWay}"/>
</DataTemplate> </telerik:GridViewDataColumn.CellEditTemplate>
</telerik:GridViewDataColumn>
Thanks
Vinotha