Hi, Team
I wish to send to my post controller all the value with format. this is my code
@(Html.EJ().MaskEditTextBoxFor(model => model.duracionCitaRuedaNegocios)
.InputMode(InputMode.Text).MaskFormat("99:99").WatermarkText("HH:MM")
.ClientSideEvents(s=>s.FocusOut("duracioncitavalidate"))
)
when i give this input 01:15, send me "0115", i need to send "01:15"
Thanks