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

Messages

configuration

The text messages displayed in the widget. Use this option to customize or localize the messages.

messages

Object
<input id="dropdownlist" />
<script>
  var items = [{ text: "Item 1", value: "1" }, { text: "Item 2", value: "2" }];
  $("#dropdownlist").kendoDropDownList({
    dataTextField: "text",
    dataValueField: "value",
    dataSource: items,
    index: 1,
    messages: {
      noData: "There is no data!"
    }
  });
</script>

The text message shown in the filter input.

Default: "Filter"

<input id="dropdownlist" />
<script>
  $("#dropdownlist").kendoDropDownList({
    dataSource: [],
    filter: "contains",
    messages: {
      filterInputPlaceholder: "Placeholder for filtering"
    }
  });
</script>

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

Default: "No data found."

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