Raja Manickam
Raja Manickam

Reputation: 1903

Recurring events Yearly in full calendar

I am displaying the Date of Birth of the persons in the Full calendar ex:17-July-1992. I want to have this events entry in all years like 17-July-2014, 17-July-2015, 17-July-2016,etc. Automatically.

events: [{
                    title: 'user1',
                    start: '2015-04-09',
                    description: 'birthday_event',
                    backgroundColor: Metronic.getBrandColor('blue')
                    },{
                    title: 'user2',
                    start: '2015-04-08',
                    description: 'birthday_event',
                    backgroundColor: Metronic.getBrandColor('blue')
                    },{
                    title: 'user3',
                    start: '2015-04-14',
                    description: 'birthday_event',
                    backgroundColor: Metronic.getBrandColor('blue')
                    }
]

this events are displaying correctly in the full calendar i want to create the events dynamically

Upvotes: 1

Views: 3669

Answers (2)

valar morghulis
valar morghulis

Reputation: 2017

This is an additional functionality that has been awaited for an long time. Follow the link here to track the progress.

I highly recommend that it should be done at server side, a little manipulation of the database will be required. You can built your own logic or just follow the links mentioned to get an clearer view.

Here is an good article that will help you to get a grip on how to solve the problem. Click here

I strongly recommend you to read this Link Here For table structure and complete flow.

Upvotes: 0

v2solutions.com
v2solutions.com

Reputation: 1439

You can use viewRender event and assign current year to the date.

Upvotes: 1

Related Questions