options Object
An object, which holds the options of the widget. The options object holds all available DatePicker configuration fields.
Example - get options of the widget
<input id="datepicker" />
<script>
//initialize the DatePicker
$("#datepicker").kendoDatePicker();
//get instance of the DatePicker
var datepicker = $("#datepicker").data("kendoDatePicker");
//Get the DatePicker options object
var options = datepicker.options;
console.log("options", options)
</script>