How to get AngularJS and KendoUI working in harmony?
问题 In stages, I setup my .Net MVC solution and ensured both Angular JS and KendoUI are working independently. app.js: var app = angular.module("app", ['kendo.directives']); and in my controller, I have the following defined: app.controller('contentTypesController', ['$scope', '$log', 'contentTypesRepository', function ($scope, $log, contentTypesRepository) { var a = {}; $scope.status; $scope.contentTypes; $scope.contentTypeOptions; // for testing purposes, but not used - used for navigation