Date Formatting
The DateRangePicker's default date format is MM-dd-yyyy. You can set a preferred date format in the Telerik UI for ASP.NET MVC DateRangePicker with the Format
property.
The following example demonstrates how to define the date format.
@(Html.Kendo().DateRangePicker()
.Name("daterangepicker")
.Format("{0:dd/MM/yyyy}")
)
You can find more information about the available formatting options in our Date Formatting article. At the client-side you are also able to format dates by using the Kendo UI kendo.toString
method.