Item.CheckList.Save

Saves the checklist information for an item. Valid checklist information includes the completed status and due date.

Parameters

Calendar.queryDay

Specifies the desired day of the month.

Calendar.queryMonth

Specifies the desired month of the year (1=January, 12=December).

Calendar.queryYear

Specifies the desired year (in 4-digit format, such as 1999 or 2000).

Item.CheckList.completed

Specifies if the completed box is enabled (if the check box is selected).

Item.CheckList.dueDate

Specifies if the due date is enabled (if the check box is selected).

Item.drn (Required)

Specifies the GroupWise identifier of the item.

User.context (Required)

Specifies the context identifier for this user’s session.

Return Values

Returns the same values as Item.Read.

Example

<FORM method=post action=/servlet/webacc>
   <INPUT type=hidden name=User.context value=xyz>
   <INPUT type=hidden name=action value=Item.Action>
   <INPUT type=hidden name="Item.CheckList.Save" value="">
   <INPUT type=hidden name=Item.drn value=582z1z>
   <INPUT type=checkbox name=Item.CheckList.completed value="enabled">
   <INPUT type=text name=Calendar.queryDay value="8">
   <INPUT type=text name=Calendar.queryMonth value="7">
   <INPUT type=text name=Calendar.queryYear value="2002">
   <INPUT type=hidden name=Item.CheckList.completed value="enabled">
</FORM>