Hi,
Is it possible to display all available items in autocomplete widget without changing the source code?
I’ve got something like this, that is an attempt to open the options when textfield receives focus, but it is not working.
$("#myAutoComplete").kendoAutoComplete({
dataSource: ["Item1", "Item2"],
delay: 100,
minLength: 0
});
$("#myAutoComplete").focus(function () {
$("#myAutoComplete").data("kendoAutoComplete").search("");
});
Thanks
Doug
Is it possible to display all available items in autocomplete widget without changing the source code?
I’ve got something like this, that is an attempt to open the options when textfield receives focus, but it is not working.
$("#myAutoComplete").kendoAutoComplete({
dataSource: ["Item1", "Item2"],
delay: 100,
minLength: 0
});
$("#myAutoComplete").focus(function () {
$("#myAutoComplete").data("kendoAutoComplete").search("");
});
Thanks
Doug