This tag stores the specified event into the current calendar set. It can either store a new event or update an existing event. If an error occurs during processing, the tag body will be evaluated.
JSP
If the name attribute is not specified then a parent event tag is used to find the event to operate on. The modifier attribute should only be used to update an existing event.
This tag has the following attributes for which the Required value is “No”:
Name of the event bean to store.
Specifies how to update an existing event. Can accept a string.
This event instance only.
This and all future occurrences.
This and previous occurrences.
This and all occurrences.
None
<%-- store an event by name --%> <cal:event id="event1"> <cal:store name="event1"> ...store failed... </cal:store> <%-- store an event and all future occurrences --%> <cal:event> <cal:store modifier="<%= RecurrencePatten.THIS_INSTANCE %>" > ...store failed... </cal:store> </cal:event>