labelString|Function|Object(default: null)
Adds a label before the datetimepicker. If the datetimepicker has no id attribute, a generated id will be assigned. The string and the function parameters are setting the inner HTML of the label.
Example - create a label from a string
<input id="datetimepicker" />
<script>
$("#datetimepicker").kendoDateTimePicker({
label: "Date"
})
</script>
The function context (available through the keyword this) will be set to the widget instance.
Example - create a label from a function
<input id="datetimepicker" />
<script>
$("#datetimepicker").kendoDateTimePicker({
label: function() {
return "Date";
}
})
</script>
In this article