- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to have same value in two columns as you put value in first column?
Hi team,
I am typing value in Input box A, is there a possibility to have same value in input box B as I type?
How do I implement it using Rules?
Kindly help if this is possible.
Thanks in advance.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Yamini,
that should be quite simple:
<RULE>
<WITH>
<PROPERTY name="VALUE" source="nameOfInputA"/>
</WITH>
<DO>
<PROPERTY name="VALUE" source="nameOfInputB" />
</DO>
</RULE>
Nevertheless, whatโs the use case behind this requirement?
Regards,
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Yamini,
that should be quite simple:
<RULE>
<WITH>
<PROPERTY name="VALUE" source="nameOfInputA"/>
</WITH>
<DO>
<PROPERTY name="VALUE" source="nameOfInputB" />
</DO>
</RULE>
Nevertheless, whatโs the use case behind this requirement?
Regards,
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Michael,
Thanks for helping me out with setting the rule. the requirement was such that user would be entering values for german language and the same value should be reflected for english language too and if user wishes, he/she can change the values for eng language as well.

