the typical behavior with this control when there is no search text
is to hide the drop down
is there a way to change this
I would prefer in some cases to show all values when they have not typed anything.
thanks
dco
2 Answers, 1 is accepted
0
Accepted
Ivo
Telerik team
answered on 08 Nov 2012, 10:06 AM
Hello David,
This can be achieved by writing a few lines of custom code.
First of all you will have to handle the GotFocus event of the RadAutoCompleteBox and execute its Populate method giving the control's SearchText as parameter. After this you will have to create a custom filtering behavior derived from the FilteringBehavior class and override the FindMatchingItems method. Into this method you have to return all items if the string is null or empty. Here is sample code: