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

Buttons

The Telerik UI for ASP.NET Core DateRangePicker exposes the ability to employ additional buttons within the date input of component. And control the behavior of how the Calendar Popup will be opened.

Calendar Button

The Telerik UI for ASP.NET Core DateRangePicker allows you to deliberately render a calendar button that will appear inside the. This allows you to dictate the behavior of how the Calendar Popup will be triggered.

        @(Html.Kendo().DateRangePicker()
            .Name("daterangepicker")
            .CalendarButton(true)
        )
        <kendo-daterangepicker name="daterangepicker"
                               calendar-button="true">
        </kendo-daterangepicker>

Clear Button

The Telerik UI for ASP.NET Core DateRangePicker allows render an additional button within the date input. The button allows you to clear to entered input value through manual interaction.

        @(Html.Kendo().DateRangePicker()
            .Name("daterangepicker")
            .ClearButton(true)
        )
        <kendo-daterangepicker name="daterangepicker"
                               clear-button="true">
        </kendo-daterangepicker>

See Also

In this article