Less than operator not working in binary decision
-
- Posts: 46
- Joined: August 26th, 2021, 2:02 pm
- Contact:
Less than operator not working in binary decision
I am trying to use the less than (<) or the less than or equal (<=) to operator in a binary decision and it is resulting in an exception "'<', hexadecimal value 0x3C, is an invalid attribute character.". I've tried using the CDATA button and the canvas will not accept the < symbol.
word count: 53
Tags:
-
- Posts: 576
- Joined: August 26th, 2021, 9:56 am
- Contact:
Re: Less than operator not working in binary decision
Task #10465 has been created. We will update this post when it has been completed.
word count: 15
-
- Posts: 329
- Joined: August 26th, 2021, 9:18 am
- Contact:
Re: Less than operator not working in binary decision
The & is causing the issue. To get this to work set the operator to:
Code: Select all
<![CDATA[&]]>lt;
word count: 19