However when I click on the "clear" icon of the autocmplete box there are a few unexpected behaviors
- there is a call to the controller with empty text
- the dropdown remains open saying "no data found"
1 Answer, 1 is accepted
0
Ivan Danchev
Telerik team
answered on 21 Sep 2017, 12:02 PM
Hello François,
In our demos when the input is cleared a request is sent to the server and it returns all the items. The No data found message is not displayed:
Here's the Action that is called:
public JsonResult GetProducts(string text)
{
var northwind = new SampleEntities();
var products = northwind.Products.Select(product => new ProductViewModel