New to Kendo UI for jQueryStart a free 30-day trial

Value

methods

Gets/Sets the value of the DateInput.

Parameters:valueDate|String

The value to set.

Returns:Date

The value of the DateInput.

<input id="dateinput" />
<script>
$("#dateinput").kendoDateInput({
    value: new Date(2013, 10, 10)
});

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

var value = dateinput.value();
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(value);
</script>
<input id="dateinput" />
<script>
$("#dateinput").kendoDateInput({
    value: new Date(2013, 10, 10)
});

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

dateinput.value(new Date());
</script>
Not finding the help you need?
Contact Support