Search the FirstSpirit Knowledge Base
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.
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
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
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.