I am using an autocomplete control:
var data = ["Books", "Movies", "Music"];
$("#input").kendoAutoComplete({
dataSource: data,
placeholder: "Select Category..."
});
For some reason the list of options is replacing the text box instead of showing below the input box. See the attached screenshots.
Why is this happening?
var data = ["Books", "Movies", "Music"];
$("#input").kendoAutoComplete({
dataSource: data,
placeholder: "Select Category..."
});
For some reason the list of options is replacing the text box instead of showing below the input box. See the attached screenshots.
Why is this happening?