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

Separator

configuration

The character used to separate multiple values. Empty by default.

As of Q3 2016 the Autocomplete widget supports multiple separators listed in an array. All separators will be replaced with the first array item, which acts as a default separator.

Using the separator option will still bind the primitive stringe value of the input. In case you need to bind multiple data items, you can consider the MultiSelect widget.

separator

String|Array

Default: ""

<input id="autocomplete" />
<script>
$("#autocomplete").kendoAutoComplete({
  separator: ", ",
  dataSource: {
    data: ["One", "Two"]
  }
});
</script>
<input id="autocomplete" />
<script>
$("#autocomplete").kendoAutoComplete({
  separator: [", ", "; "],
  dataSource: {
    data: ["One", "Two"]
  }
});
</script>
Not finding the help you need?
Contact Support