adaptiveModeString
(default: "none")
Specifies the adaptive rendering of the component. The supported values are: none
(default), auto
.
The adaptive rendering of the DateTimePicker provides consistency to the customer experience on any device by supporting adaptive enhancements such as changes in styling and behavior.
Example
<input id="datetimepicker" />
<script>
$("#datetimepicker").kendoDateTimePicker({
adaptiveMode: "auto"
});
</script>
In this article