autoSwitchKeys Array

A string array representing keys that when pressed will force a move to the next segment. By default the culture specific symbols that match / and : are used.

Example - sets the autoSwitchKeys

<input id="dateinput" />
<script>
$("#dateinput").kendoDateInput({
    autoSwitchKeys: ["-", "/", ":"]
});
</script>
In this article