componentType String
(default: "classic")
Specifies the component type of the widget.
-
"classic"
- Uses the standard rendering of the widget. -
"modern"
- Uses new rendering with a fresh and modern look and feel.
Example - specify modern component type
<input id="datetimepicker" />
<script>
$("#datetimepicker").kendoDateTimePicker({
componentType: "modern"
});
</script>