Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
975
setting the region to UK for datePicker
posted

How do I set the region to UK for my date format in a DatePicker control ?  Its defaulted to US.  Im using MVC helper NOT javascript so i need and example for that.  Heres what I have

@(Html.Infragistics().DatePickerFor(model => model.ContractDate)
.ID("contractDatePicker")
.Width("150px").DateDisplayFormat("dd/MM/yyyy")
.DateInputFormat("dd/MM/yyyy")
.ButtonType(TextEditorButtonType.Clear)
.Regional(  -->  what goes here for UK date format ??
.Render())