I have ASP.NET MVC3 installed. I need datepicker with formatted date. I tried this, but it's not working (when passing "{0:dd/MM/yyyy}" as format parameter, it still does not format):
private static MvcHtmlString FormattedDateTextBoxFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, string format, RouteValueDictionary htmlAttributes)
{
var metadata = ModelMetadata.FromLambdaExpression(expression, htmlHelper.ViewData);
if (metadata.Model != null && metadata.Model as DateTime? != null)
htmlAttributes.Add("value", string.Format(format, (DateTime)metadata.Model));
return htmlHelper.TextBoxFor(expression, htmlAttributes);
}
EDIT: My code works if format is "{0:dd-MM-yyyy}" but not only for "{0:dd/MM/yyyy}"
I know that MVC4 has already this functionality, but unfortunately my project is written on MVC3. Can you help me?
The syntax is: @Html.TextBoxFor( expression, string format, object htmlAttributes)
eg:
In your Model, use the following:
Here is what it should do in the View:
This should give you a date formatted out to the format of dd/MM/yyyy.
Display will depend on culture. And while in most cases all other answers are correct, it did not work for me. Culture issue will also cause different problems with jQuery datepicker, if attached.
If you wish to force the format escape / in the following manner:
If not escaped for me it show
08-01-2010
vs. expected08/01/2010
.Also if not escaped jQuery datepicker will select different defaultDate, in my instance it was
May 10, 2012
.The only format I have even gotten to work is this:
this format will help you: