This is a migrated thread and some comments may be shown as answers.

Search Timeout

1 Answer 59 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Randy
Top achievements
Rank 1
Randy asked on 13 Jul 2010, 01:52 AM
I have a RadComboBox that is bound to a class. (It is a list of States for the US). If you type "con" quickly you get Connecticut. If you type "con" slowly you get "California" followed by "Ohio" and then "Nebraska".

Is there a setting that will extend the timeout, it seems to be very short right now, in the order of fractions of a second.

The XAML is:
 

<telerikInput:RadComboBox Height="23" Width="250" Grid.Row="6" HorizontalAlignment="Left" VerticalAlignment="Top" Name="dlState" SelectedItem="{Binding state, Mode=TwoWay, ValidatesOnExceptions=True,NotifyOnValidationError=true}" Text="" />



Thanks
Randy

1 Answer, 1 is accepted

Sort by
0
Valeri Hristov
Telerik team
answered on 13 Jul 2010, 07:59 AM
Hello Randy,

There is a static property Telerik.Windows.Controls.TextSearch.AutocompleteTimeOut that could be set to customize that timeout. The default value is 800ms:

TextSearch.AutoCompleteTimeout = TimeSpan.FromMilliseconds(800);

Best wishes,
Valeri Hristov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
ComboBox
Asked by
Randy
Top achievements
Rank 1
Answers by
Valeri Hristov
Telerik team
Share this question
or