How to added event scheduler
See original GitHub issueSir I’m try to added Angular for Full Calendar event scheduler But cant be added correctly for this , I want to know how to added correctly add for angular attached link(Full Calendar Event Scheduler https://fullcalendar.io/js/fullcalendar-scheduler-1.9.1/demos/simple.html) please help me to fix this issue look at my code
**index.component.html**
<div class="calendar">
<angular2-fullcalendar [options]="calendarOptions" (initialized)="onCalendarInit($event)"></angular2-fullcalendar>
</div>
**index.component.ts**
export class IndexComponent {
calendarOptions: Object = {
height: 'auto',
defaultDate: '2017-12',
editable: true,
eventLimit: true, // allow "more" link when too many events
navLinks: true,
resourceAreaWidth: '15%',
views: {
timelineThreeDays: {
type: 'timeline',
duration: {
days: 365
}
}
},
resourceGroupField: 'Rooms',
resources: [{
id: 'a',
Rooms: ' Single Rooms (8)',
title: 'Room # 1'
}, {
id: 'b',
Rooms: ' Single Rooms (8)',
title: 'Room # 2',
eventColor: 'green'
}, {
id: 'c',
Rooms: ' Single Rooms (8)',
title: 'Room # 3',
eventColor: 'orange'
}, {
id: 'd',
Rooms: ' Single Rooms (8)',
title: 'Room # 4',
children: []
}, {
id: 'e',
Rooms: ' Single Rooms (8)',
title: 'Room # 5'
}, {
id: 'f',
Rooms: ' Single Rooms (8)',
title: 'Room # 6',
eventColor: 'red'
}, {
id: 'g',
Rooms: ' Single Rooms (8)',
title: 'Room # 7',
eventColor: 'orange'
}, {
id: 'h',
Rooms: ' Single Rooms (8)',
title: 'Room # 8',
eventColor: 'green'
}, {
id: 'i',
Rooms: ' Double Rooms (2)',
title: 'Room # 9',
eventColor: 'red'
}, ],
events: [
{
id: '1',
resourceId: 'a',
start: '2017-12-01',
end: '2017-12-07',
title: 'Mahesh'
}, {
id: '2',
resourceId: 'b',
start: '2017-12-12',
end: '2017-12-15',
title: 'Anushka'
}, {
id: '3',
resourceId: 'c',
start: '2017-12-11',
end: '2017-12-15',
title: 'Ramesh'
}, {
id: '4',
resourceId: 'd',
start: '2017-12-11',
end: '2017-12-19',
title: 'Susena'
}, {
id: '5',
resourceId: 'e',
start: '2017-12-15',
end: '2017-12-28',
title: 'Lahiru'
}, {
id: '6',
resourceId: 'f',
start: '2017-12-01',
end: '2017-12-10',
title: 'Chamath'
}, {
id: '7',
resourceId: 'g',
start: '2017-12-10',
end: '2017-12-11',
title: 'Channa'
}, {
id: '8',
resourceId: 'h',
start: '2017-12-09',
end: '2017-12-14',
title: 'Ganesh'
}, {
id: '9',
resourceId: 'i',
start: '2017-12-05',
end: '2017-12-09',
title: 'Priya'
}
],
}
onCalendarInit(initialized: boolean) {
console.log('Calendar initialized');
}
}
Issue Analytics
- State:
- Created 6 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Create an event - Android - Google Calendar Help
On your Android phone or tablet, open the Calendar app Calendar . · Tap Create Insert and then Event Event · Optional: If...
Read more >AddEvent.com - Add to Calendar and event tools for websites ...
Create a calendar in AddEvent and add all your events. · Add an add-to-calendar button to your website that your users can click...
Read more >Add events to the Family app using the Event Scheduler
Head to File > Event Scheduler to look at fields needed to get events added! Step One: Select the date for the activity...
Read more >Google Calendar, How to Add or Create a New Event - YouTube
In this video, I will show you how to add, edit, or create a new event in Google Calendar. I love using Google...
Read more >23.4.2 Event Scheduler Configuration
When the Event Scheduler is stopped ( event_scheduler is OFF ), it can be started by setting the value of event_scheduler to ON...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Sheduler is premium version https://fullcalendar.io/scheduler/download/ , I have never worked with that. Will be in future versions.
Hi, Did you plan to work on adding scheduler support ? If yes, any estimated release date ?