New to Telerik UI for ASP.NET Core? Download free 30-day trial

DateInput Integration

The DatePicker provides integration options with the Telerik UI DateInput for ASP.NET Core for the input element it renders.

To use the DateInput as the input element in a DateTimePicker, enable the DateInput property of the DateTimePicker.

    @(Html.Kendo().DateTimePicker()
        .Name("dateTimePicker")
        .DateInput(true)
    )
<kendo-datetimepicker name="datetimepicker"
                       date-input="true"/>

To customize the placeholders of the DateInput use the Messages configuration and set the desired DateInput messages.

See Also

In this article