Incredibly pleased to announce the release of my latest 
Pluralsight course: Kendo UI and AngularJS From Scratch
This course is targeted at Kendo UI programmers who wish to integrate Kendo UI into AngularJS programs (e.g., rather than jQuery). In only an hour and a quarter you’ll learn all you need to know to be productive.
About Jesse Liberty
Jesse Liberty has three decades of experience writing and delivering software projects and is the author of 2 dozen books and a couple dozen online courses.
His latest book, Building APIs with .NET will be released early in 2025.
Liberty is a Senior SW Engineer for CNH and he was a Senior Technical Evangelist for Microsoft, a Distinguished Software Engineer for AT&T, a VP for Information Services for Citibank and a Software Architect for PBS. He is a Microsoft MVP.
Excellent information, good
Angularjs online Training
I just watched your pluralsight course on kendo and angular. I’ve been playing around with the datepicker. I wonder if you have any suggestions for how to bind a date value that is on my scope to be a value of the datepicker.
I setup my kendo date picker:
//$scope.CaseFileDate has my date stored as a string on the scope.
$scope.kCaseFileDate = {
value: new Date($scope.CaseFileDate),
change: function(e) {
$scope.CaseFileDate = this.value();
}
}
I’m missing how to have the scope value bound to the Kendo Date Control.