toggle

Opens or closes the widget popup.

Parameters

toggle Boolean (optional)

Defines the whether to open/close the drop-down list.

Example - set text of the widget

<input id="combobox" />
<script>
$("#combobox").kendoComboBox({
  dataSource: [ "Apples", "Oranges" ]
});

var combobox = $("#combobox").data("kendoComboBox");

combobox.toggle();
</script>
In this article