...
Excerpt |
---|
Show a message based on the checkbox value e.g. show “This is approved!” when the checkbox is checked.
|
Setup in Picturepark
Layer "Corporate Information"
Checkbox "Legally approved"
...
Code Block |
---|
{% if data.corporateInformation.legallyApproved == true %} This was approved! {% endif %} |
...