I am trying to write a logic that evaluates if both the conditions are true in XML, so my code goes like this:
<IF COND="IsVariable.c=true AND IsVariable.cid=true">
...
</IF>
The above statement does not evaluates, also I have tried using IsVariable.c=true && IsVariable.cid=true even this does not evaluates
What is the correct way of writing if conditions with && in xml?