In order for Kendo DatePicker to work with a string model of date values:
1) Use k-ng-model instead of ng-model .
2) Tell the widget in which the exact format will be processed.
<input kendo-date-picker k-ng-model="emp.datestart" k-options="datePickerOptions" />
Then on your AngularJS controller you will specify a date parsing format, for example:
$scope.datePickerOptions = { parseFormats: ["yyyy-MM-ddTHH:mm:ss"] };
Paulo soto
source share