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",