This tag deletes the specified event from the current calendar set. 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 tag has the following attributes for which the Required value is “No”:
None
<%-- delete an event by name --%> <cal:event id="event1"> <cal:delete name="event1"> ...delete failed... </cal:delete> <%-- delete an event and all future occurences --%> <cal:event> <cal:delete modifier="THIS_INSTANCE"> ...delete failed... </cal:delete> </cal:event>