api:default
Version 23.0.9145
Version 23.0.9145
api:default
Use the api:default
keyword with the api:select keyword. api:default
consists of a block of APIScript that is executed if the value in api:select
does not match any of the values in api:case.
Parameters
None
Control Attributes
None
Example
Display an icon based on the condition. The api:case
elements match CompanyA
and CompanyB
in the company_name
attribute. If any occurrences are found, take the action associated with that case.
<api:select value="[company_name]">
<api:case value="CompanyA">
<img src="http://www.companya.com/favicon.ico" />
</api:case>
<api:case value="CompanyB">
<img src="http://www.companyb.com/favicon.ico" />
</api:case>
<api:default>
<img src="http://www.myhosting.com/generic.ico"/>
</api:default>
</api:select>
See Also
- api:select: Write a multi-select APIScript block.