options Object
An object, which holds the options of the widget.
Example - get options of the component
<input id="dateinput" />
<script>
$("#dateinput").kendoDateInput();
var dateinput = $("#dateinput").data("kendoDateInput");
var options = dateinput.options;
</script>