This question is locked. New answers and comments are not allowed.
I have this code
and when I submit the form the value Fecha is not returned to model.
The only way the field Fecha is returned to model is if I remove
How can I configure the datepicker to show the format dd MMM yyyy and post it in format dd/mm/yyyy
Thanks!!
using (Ajax.BeginForm()){ @Html.Telerik().DatePickerFor(m => m.Fecha).Value(DateTime.Now).ShowButton(true).TodayButton().Format("dd MMM yyyy")}The only way the field Fecha is returned to model is if I remove
.Format("dd MMM yyyy")How can I configure the datepicker to show the format dd MMM yyyy and post it in format dd/mm/yyyy
Thanks!!