I am updating an older site running AngularJS and Kendo in Asp.Net MVC
My html Form has this control that is posted to the back end:
@using (Html.BeginForm( new { name = "frmMain", novalidate = "", id = "frmMain" }))
<
input
kendo-date-picker
ng-model
=
".BiWeeklyStartDate"
k-parse-formats
=
"['yyyy-MM-dd']"
k-format
=
"'yyyy-MM-dd'"
/></
p
>
The date that is posted to the backend is a full date. How can I change that so that the Kendo Control sends "yyyy-MM-dd" to the backend only?