what is the event or method name that i have to call or handle to update an existing event in the calendar(the event i click on). full calendar can be found here http://arshaw.com/fullcalendar/
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
When you initialize the FullCalendar instance, bind the eventClick handler:
You might want to show a form or something in order to allow the user to modify the event properties (title, start etc). Then to update the event back in the FullCalendar instance:
And to address jmeho question:
When you add the event to FullCalendar either through
renderEvent()or event source, you can specifyidfor each event. After you added the event, you can retrieve the event hash/object by using:Then you can modify the has/object and use the updateEvent() method to update the FullCalendar display.