New to Kendo UI for jQueryStart a free 30-day trial

NoDataTemplate

configuration

The template used to render the "no data" template, which will be displayed if no results are found or the underlying data source is empty. The noData template receives the widget itself as a part of the data argument. The template will be evaluated on every widget data bound.

Important The popup will open when 'noDataTemplate' is defined

noDataTemplate

String|Function|Boolean

Default: true

<input id="autocomplete" />
<script>
$("#autocomplete").kendoAutoComplete({
  dataSource: [
    { id: 1, name: "Apples" },
    { id: 2, name: "Oranges" }
  ],
  dataTextField: "name",
  noDataTemplate: 'No Data!'
});
</script>
Not finding the help you need?
Contact Support