I'm super new to AngularJS. I'm trying to use Kendo-ui-core in my project. I'm using Yeoman, grunt, node & bower.
I've downloaded the pre-configured zip package for kendo-ui-core from http://www.telerik.com/kendo-ui/open-source-core
I've added these to the .html
<link href="styles/kendo-styles/kendo.common.min.css" rel="stylesheet" />
<link href="styles/kendo-styles/kendo.default.min.css" rel="stylesheet" />
<script src="scripts/kendo-scripts/jquery.min.js"></script>
<script src="bower_components/angular/angular.js"></script>
<script src="scripts/kendo-scripts/kendo.core.min.js"></script>
<script src="scripts/kendo-scripts/kendo.angular.min.js"></script>
Also in the body
<label>Birthday: <input kendo-date-picker /></label>
and in the app.js, I've added a dependency for "kendo.directives"
angular.module('myApp', [ 'kendo.directives',
'ngAnimate',
'ngCookies',
'ngResource',
'ngRoute',
'ngSanitize',
'ngTouch',
'restangular',
'ngDialog',
'bgDirectives'])
The problem is I got no error but I got also nothing !!! Just the normal input tag
Any idea what I'm missing here ?!! what's wrong with it ?!