SelectAll | DeselectAll
Note:
- This task is applicable only to Zoho Creator.
Overview
The selectAll deluge task preselects all choices in a specified multi-select or a lookup field(multi select or checkbox display).
The deselectAll deluge task deselects all choices(previously selected) in a specified multi-select or a lookup field(multi select or checkbox display).
Syntax
To select all choices
To deselect all selected choices
Parameter | Description |
---|---|
<field_link_name> | Link name of the field in which all the choices need to be selected or deselected. Only the following field types can be specified:
|
This task can be used in the following events
When a record is Created | ||
On Load | Yes | |
On Validate | No | |
On Success | No | |
On User input | Yes | |
Subform on add row | Yes | |
Subform on delete row | Yes | |
When a record is Created or Edited | ||
On Load | Yes | |
On Validate | No | |
On Success | No | |
On User input | Yes | |
Subform on add row | Yes | |
Subform on delete row | Yes | |
When a record is Edited | ||
On Load | Yes | |
On Validate | No | |
On Success | No | |
On User input | Yes | |
Subform on add row | Yes | |
Subform on delete row | Yes | |
When a record is Deleted | ||
On Validate | No | |
On Success | No | |
Other workflow events | ||
On a scheduled date | No | |
During approval process | No | |
During payment process | No | |
In a Custom Function | No | |
In an Action item in report | No |
Examples
1) In the following example, if the "Register all" decision box is checked, all the choices(games) present in the "Games" multi-select field will be selected.
{
Games.selectall();
}
2) In the following example, if the "Reset selection" decision box is checked, all the choices(games) present in the "Games" multi-select field will be deselected.
{
Games.deselectall();
}