Sun Java System Portal Server Mobile Access 7.1 Tag Library Reference

delete

Description

This tag deletes the specified event from the current calendar set. If an error occurs during processing, the tag body will be evaluated.

Tag Body

JSP

Restrictions

If the name attribute is not specified then a parent event tag is used to find the event to operate on.

Attributes

The tag has the following attributes for which the Required value is “No”:

name

Name of the event bean to delete.

modifier

Specifies how to update an existing event. Can accept a string

THIS_INSTANCE

This event instance only.

THIS_AND_FUTURE

This and all future occurances.

THIS_AND_PRIOR

This and previous occurances.

THIS_AND_ALL

This and all occurances.

Properties

None

Example(s)
<%-- 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>