options Object

An object, which holds the options of the widget.

Example - get options of the widget

<input id="dateinput" />
<script>
$("#dateinput").kendoDateInput();

var dateinput = $("#dateinput").data("kendoDateInput");

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