This tag makes the specified task 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 task in the parent collection is used.
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 Type values are “DateTime”, “Boolean”, “String”, and “ReminderBean” and the Access value is “Get/Set”:
The time at which the task is due.
If the DueDate is valid.
If the task is due or not.
If the dueTime is valid.
n/a
n/a
Long description of the event.
Short summary of the event.
Location of the event.
n/a
Whether the event lasts all day or not; boolean.
String to store the date for temparory purpose.
The recurrence pattern for the Task.
The reminder for the task.
The instances of task needs to be modified. RecurrencePattern.THIS_INSTANCE and RecurrencePattern.THIS_AND_FUTURE.
Same as recurrenceModifier.
<%-- create a 'new' task --%> <cal:task id="new"/> <%-- create a 'new' task with a summary --%> <cal:task id="new"> <cal:set property="summary" value="Task Summary"/> </cal:task> <%-- use a previously created task --%> <cal:task name="now"> Due Date = <cal:get property="dueDate"/> Summary = <cal:get property="summary"/> </cal:task> <%-- current task in the task collection --%> <cal:tasks iterate="true"> <cal:task> ... </cal:task> </cal:events>