messages.noData String (default: "No data found.")

The text message shown in the noDataTemplate when no data is available in the widget drop-down.

Example - customize noData message

<input id="combobox" />
<script>
  $("#combobox").kendoComboBox({
    dataSource: [],
    messages: {
      noData: "There is no data!"
    }
  });
</script>
In this article