Hi
I am using ej.ejAutocomplete control, it works good but I have a small problem.
If the user selects an item from suggestion popup list, I store the selected item in a local variable.
The problem that I have is;
If the user removes a part of the text in autocompleteTextbox, I would like to set the text again on focusOut event, from tha local variable that I stored.
Here is the use case:
- User searches Departments
- Select "Development" Department from popup => selected item is saved in local variable on "select" event
- User deletes some text using backspace button and leave it like "Develo"
- OnFocusOut event, the text of textbox should be set to "Development" again (from selectedDepartment.name)
Thanks