popup Object
The options that will be used for the popup initialization. For more details about the available options refer to Popup documentation.
Example - append the popup to a specific element
<div id="container">
<input id="autocomplete" />
</div>
<script>
$("#autocomplete").kendoAutoComplete({
dataSource: [
{ id: 1, name: "Apples" },
{ id: 2, name: "Oranges" }
],
dataTextField: "name",
popup: {
appendTo: $("#container")
}
});
</script>