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

Buttons

The Telerik UI for ASP.NET MVC 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 MVC 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)
        )

Clear Button

The Telerik UI for ASP.NET MVC 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)
        )

See Also

In this article