标签:
<input kendo-date-time-picker ng-model="str" k-ng-model="obj" style="width: 100%;" />
angular.module("KendoDemos", [ "kendo.directives" ]) .controller("MyCtrl", function($scope){ $scope.str="2016-06-02 01:00:00";//若果 $scope.str=6/2/2016 1:00:00 AM 则无法绑定到控件 , 坑 $scope.getType = function(x) { return typeof x; }; $scope.isDate = function(x) { return x instanceof Date; }; })
KendoUI坑系列之Date-Time-Picker Angular不绑定时间字符串
标签:
原文地址:http://www.cnblogs.com/Zoes/p/5551856.html