componentTypeString(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="datepicker" />
<script>
$("#datepicker").kendoDatePicker({
componentType: "modern"
});
</script>
In this article