-1
I’d like you to return only to Data, but I don’t know what to do!
My code:
[Display(Name = "Data de Nascimento")]
//[DataType(DataType.Date)]
//[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:dd/MM/yyyy}")]
[Required(AllowEmptyStrings = false, ErrorMessage = "Por favor, informe sua data de nascimento.")]
public System.DateTime dtNascimento { get; set; }
I use a Jquery to make the input beautiful and such... Code:
$("#dtNascimentoFuncMeusDados").removeAttr("data-val-date");
$('#dtNascimentoFuncMeusDados').datepicker({
weekStart: 0,
maxViewMode: 2,
language: "pt-BR",
multidate: false,
autoclose: true,
todayHighlight: true
});