/// <summary> /// Renders a new event on the calendar. /// </summary> /// <param name="event">event must be an Event Object with a title and start at the very least.</param> /// <param name="stick">Normally, the event will disappear once the calendar refetches its event sources (example: when prev/next is clicked). However, specifying stick as true will cause the event to be permanently fixed to the calendar.</param> public void renderEvent(Event @event, bool stick) { }
/// <summary> /// Renders a new event on the calendar. /// </summary> /// <param name="event">event must be an Event Object with a title and start at the very least.</param> public void renderEvent(Event @event) { }
/// <summary> /// Reports changes to an event and renders them on the calendar. /// </summary> /// <param name="event">event must be the original Event Object for an event, not merely a reconstructed object. /// The original Event Object can obtained by callbacks such as eventClick, or by the clientEvents method.</param> ///<example> ///usage ///<code> ///$('#calendar').fullCalendar({ /// eventClick: function(event, element) { /// /// event.title = "CLICKED!"; /// /// $('#calendar').fullCalendar('updateEvent', event); /// /// } /// }); ///</code> ///</example> public void updateEvent(Event @event) { }