messages.millisecond String
(default: "")
Allows customization of the Millisecond text in the TimePicker.
Example
<input id="timepicker" />
<script>
$("#timepicker").kendoTimePicker({
value: new Date(),
format: "hh:mm",
componentType:"modern",
messages: {
millisecond: "My Millisecond"
}
});
</script>