options Object

An object, which holds the options of the widget.

Example - get options of the widget

<input id="combobox" />
<script>
$("#combobox").kendoComboBox();

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

var options = combobox.options;
</script>
In this article