1
In my bank I have a Datetime field. In my form I have three combos for: Day, Month and Year. I have a Javascript function, which serializes the information by sending it to my record controller. It turns out the date is coming null. I tried to do it like this, but it doesn’t work.
DataNascimento:
($("input[name='txtAno']").val() + "-" +
$("input[name='txtMes']").val() + "-" +
$("input[name='txtDia']").val()),
How I remodel the date in javascript?
Are combos or textbox?
– Tafarel Chicotti