Rispondi a MVC4 DataType.Date Editor Per non visualizzare il valore della data in Chrome, bene in IE
Nel modello è necessario disporre del seguente tipo di dichiarazione:
[DataType(DataType.Date)]
public DateTime? DateXYZ { get; set; }
O
[DataType(DataType.Date)]
public Nullable<System.DateTime> DateXYZ { get; set; }
Non è necessario utilizzare il seguente attributo:
[DisplayFormat(DataFormatString = "{0:yyyy-MM-dd}", ApplyFormatInEditMode = true)]
In Date.cshtml usa questo modello:
@model Nullable<DateTime>
@using System.Globalization;
@{
DateTime dt = DateTime.Now;
if (Model != null)
{
dt = (System.DateTime)Model;
}
if (Request.Browser.Type.ToUpper().Contains("IE") || Request.Browser.Type.Contains("InternetExplorer"))
{
@Html.TextBox("", String.Format("{0:d}", dt.ToShortDateString()), new { @class = "datefield", type = "date" })
}
else
{
//Tested in chrome
DateTimeFormatInfo dtfi = CultureInfo.CreateSpecificCulture("en-US").DateTimeFormat;
dtfi.DateSeparator = "-";
dtfi.ShortDatePattern = @"yyyy/MM/dd";
@Html.TextBox("", String.Format("{0:d}", dt.ToString("d", dtfi)), new { @class = "datefield", type = "date" })
}
}
Divertiti! Saluti, Blerton