1
イベントがカレンダーに表示されていないカレンダーに表示されていない、ウェブ上の多くの例は、これに類似していたが、それでもそれは私が含まれている角度-UI-カレンダー:イベントは
が動作していませんfullcalendar
のCSSやJSファイルは、これが、これが私である私のindex.html
<div class="container">
<div style="width:60%;" ui-calendar='$ctrl.uiConfig.calendar' ng-model="$ctrl.eventSources">
\t
</div>
</div>
ですcontroller.jsは
'use strict';
(function(){
class CalendarComponent {
constructor() {
this.uiConfig = {
calendar : {
editable : true,
header : {
left : 'prev,next,today',
center : 'title',
right : 'month,agendaWeek,agendaDay'
}
}
};
this.thespian_events= [
events: [
{title: "finger painting", start: "2016-07-26T10:06:30+05:30", allDay:true}
],
color: 'blue'
];
this.eventSources = [this.thespian_events];
}
}
angular.module('sangamApp')
.component('calendar', {
templateUrl: 'app/calendar/calendar.html',
controller: CalendarComponent
});
})();
動作していない – Robin