XF 2.2 How to check if style property boolean check box is disabled

JoyFreak

Well-known member
As title reads. I want to use conditionals to check if the boolean style property check box is disabled
 
<xf:if is="property('name') == 'whatever'">

<xf:if is="property('name')">

HTML:
<xf:if is="!{{ property('name') }}">
    No thing
</xf:if>

HTML:
<xf:if is="{{ property('name') }}">
    Thing
<xf:else />
    Other thing
</xf:if>
 
Top Bottom