options Object

An object, which holds the options of the widget.

Example - get options of the widget

<input id="timepicker" />
<script>
$("#timepicker").kendoTimePicker();

var timepicker = $("#timepicker").data("kendoTimePicker");

var options = timepicker.options;
<script>
In this article