This tag makes the specified event bean properties available.
JSP
Only one of the id, name, or index attributes should be used at a time. If no attributes are specified then the current event in the parent collection is used. The event properties are only valid from the start tag to the end tag.
The tag has the following attributes for which the Required value is “No”:
Specifies the id of the bean to create.
Specifies the name of the bean to use.
Specifies the index into the current event list of the event bean to find.
The tag provides the following bean properties for which the Access value is “Get/Set”:
Start time of the event; datetime.
End time of the event; datetime.
Long description of the event.
Short summary of the event.
Location of the event.
Whether the event lasts all day or not; boolean.
Whether the event is part of a recurring series of events; boolean.
RecurrencePattern of this event.
RecurrencePattern.THIS_INSTANCE and RecurrencePattern.THIS_AND_FUTURE
Same as recurrenceModifier for backward compatible.
String used to store the date for temparory purpose.
Get and set the rsvp status of this user as an attendee in this event.Only Sun-One supported valid values.
The user invites others to this event.
Remove any existing invitees to this event.
Boolean: Indicates whether user is the organizer of this event.
ReminderBean for this event.
<%-- create a 'new' event --%> <cal:event id="new"/> <%-- create a 'new' event with a summary --%> <cal:event id="new"> <cal:set property="summary" value="Event Summary"/> </cal:event> <%-- use a previously created event --%> <cal:event name="now"> Start = <cal:get property="startTime"/> End = <cal:get property="endTime"/> Summary = <cal:get property="summary"/> </cal:event> <%-- retrieve an event by id --%> <cal:event id="event" eventid="$(eid)"> <cal:set property="summary" value="new summary"/> </cal:event> <%-- current event in the event collection --%> <cal:events iterate="true"> <cal:event> ... </cal:event> </cal:events>