Yamini
Returning Observer

How to have same value in two columns as you put value in first column?

Jump to solution

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.

0 Kudos
1 Solution

Accepted Solutions
mbergmann
Crownpeak employee

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

View solution in original post

0 Kudos
2 Replies
mbergmann
Crownpeak employee

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

0 Kudos
Yamini
Returning Observer

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.

0 Kudos