I'm used my university project for Angular Full Calendar , I want t o know how to added Calendar event for Modal popup look my image , calendar is working good, but I don't know how to add Modal popup for this event,
I want to know how to add that event to ng-bootstrap-Modal
This is my code ,
index.component.ts
export class IndexComponent {
calendarOptions:Object = {
height: 'parent',
fixedWeekCount : false,
defaultDate: '2016-09-12',
editable: true,
eventLimit: true, // allow "more" link when too many events
events: [
{
title: 'All Day Event',
start: '2016-09-01'
},
{
id: 999,
title: 'Repeating Event',
start: '2016-09-09T16:00:00'
},
}
index.component.html
<div class="container-fluid">
<div class="calendar">
<angular2-fullcalendar [options]="calendarOptions" (initialized)="onCalendarInit($event)"></angular2-fullcalendar>
</div>
</div>