Grant Jeffcote wrote: | After searching the manual and not finding (missing?) the answer is it possible to add conditional statements to a Boolean attribute? I would like a tick box to be able to trigger an event when submitted. |
Conditions are not possible with boolean attributes. You have to define the attribute as a list like
Attributes = ..., Flag, ...
Options Flag = Yes{0}, No{1}
{0} ...
{1} ...
|