I have a section I would like to hide on 2 conditions, but I can only get it working on one at a time. Is there method I am missing to get it to work on both
viewPendingDel.state.executing
viewPendingDel.data.query1.hasItems()
<section dmx-hide=“viewPendingDel.data.query1.hasItems()” >
Thanks in advance
Teodor
April 8, 2019, 6:20am
2
Use the standard JavaScript operators for the conditions, in your case:
When both conditions must be met:
<section dmx-hide=“viewPendingDel.state.executing && viewPendingDel.data.query1.hasItems()”>
When any of the conditions must be met:
<section dmx-hide=“viewPendingDel.state.executing || viewPendingDel.data.query1.hasItems()”>
2 Likes
@Teodor you are a legend !!!
1 Like