label.floating Boolean (default: false)

If set to true, the widget will be wrapped in a container that will allow the floating label functionality.

Important: The value method does not trigger the focusout event of the dateinput. This can affect the floating label functionality. You can overcome this behavior by manually invoking the refresh method of the Floating Label: $("#dateinput").data("kendoDateInput").label.floatingLabel.refresh();

Example - create a floating label

<input id="dateinput" />
<script>
    $("#dateinput").kendoDateInput({
            label: {
                content: "Date",
                floating: true
            }
    })
</script>
In this article