how to filter web app items with boolean item field checked (true) in module_webapps
perhaps i’m overlooking in bc docs can’t find answer question.
how can filter web app items when boolean web-app-item-field checked (=true) in back-end?
the web app listing-web-app. want achieve is, when web-app-item-field checked, web-app-item (and web-app-item-fields) displayed on web page.
the web page contains code references web-app-item-fields
hope can me this.
thanks,
kind regards, carla
are referring rendering page, using liquid, if box checked?
for liquid rendering, can this:
{% if this.['my boolean field'] == '1' -%}
boolean field checked, show whatever fields or information here.
{% else -%}
boolean field not checked can show here.
{% endif -%}
if don't want show if not checked, this:
{% if this.['my boolean field'] == '1' -%}
will show if checked.
{% endif -%}
More discussions in Web Apps
adobe
Comments
Post a Comment