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