options Object
An object, which holds the options of the widget.
Example - get options of the widget
<select id="multiselect" multiple="multiple"></select>
<script>
$("#multiselect").kendoMultiSelect();
var multiselect = $("#multiselect").data("kendoMultiSelect");
var options = multiselect.options;
</script>