i am trying to add the scheduler into my existing webpage using angularJS .
i started with :
<div data-ng-controller="MyCtrl">
<div data-kendo-scheduler="kendoScheduler" data-k-options="schedulerOptions" >
<span data-k-event-template class='custom-event'>{{dataItem.title}}</span>
<div data-k-all-day-event-template class='custom-all-day-event'>{{dataItem.title}}</div>
</div>
</div>
then i created the controller and injected kendo-directives in the module
as a result i am getting these two warnings :
k-event-template without a matching parent widget found. It can be one of the following: ?^^kendoScheduler
k-all-day-event-template without a matching parent widget found. It can be one of the following: ?^^kendoScheduler
attached is what i see on the browser (chrome) .
i am using "kendo-ui": "~2015.2.624+Official" , "jquery": "~2.1.4",
8 Answers, 1 is accepted
You should remove the "data-" prefixes from the templates as they are not supported currently:
Regards,
Vladimir Iliev
Telerik

thank you for you answer, i did the changes but still getting the same results,
here is my controller : http://plnkr.co/edit/hsHFPAdxo40mJ3L1FpWr?p=catalogue.
i am using a state that define the direction and the controller :
{
state: 'scheduler',
config: {
url: '/scheduler',
views: {
'content@demo': {
templateUrl: scheduler.template.html',
controller: 'MyCtrl as vm'
}
}
}
}

The reason the example is still not runable in the provided demo is:
- required Kendo UI and angular scripts are not included
- Kendo UI directives are not set as dependency for the current module
- Current module have no corresponding app
For your convenience I updated the example with the above changes:
Regards,
Vladimir Iliev
Telerik

i am trying to do bower install for the professional version : bower install https://bower.telerik.com/bower-kendo-ui.git i got this error : bower bower-kendo-ui#* ECMDERR Failed to execute "git ls-remote --tags --heads https://bower.telerik.com/bower-kendo-ui.git", exit code of #128 fatal: Authentication failed for 'https://bower.telerik.com/bower-kendo-ui.git/' i
used my account email address when i am trying to access, do i need a special account to do that ?
As stated in our documentation you will need the email and password of an active Telerik account to access the bower package:
Regards,
Vladimir Iliev
Telerik

i know this information already, i am trying to use the email and the password of the account i created but it's not allowing me to install. please check the response i am getting (in my previous post).
thanks
Apologize if I was not clear enough - by "active Telerik account" I mean account that have active licence (not a trial one).
Regards,
Vladimir Iliev
Telerik