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="combobox" />
<script>
  var items = [{ text: "Item 1", value: "1" }, { text: "Item 2", value: "2" }];
  $("#combobox").kendoComboBox({
    dataTextField: "text",
    dataValueField: "value",
    dataSource: items,
    index: 1,
    messages: {
      clear: "clear!",
      noData: "There is no data!"
    }
  });
</script>

The text message when hovering the input clear button.

Default: "clear"

<input id="combobox" />
<script>
  var items = [{ text: "Item 1", value: "1" }, { text: "Item 2", value: "2" }];
  $("#combobox").kendoComboBox({
    dataTextField: "text",
    dataValueField: "value",
    dataSource: items,
    index: 1,
    messages: {
      clear: "clear!"
    }
  });
</script>

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

Default: "No data found."

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