Page 1 of 1

Problem with textarea mapping

Posted: Fri Mar 07, 2014 12:59 pm
by Dennis Wormsbecher

I have two mappings: one to an input field and one to a textarea.
The input does get a new value but the textarea doesn't! (So the service works)
If I put an 'edit JS' with 'alert('val1e ' + value);' on the maping for the textarea, I do get the correct result in an alert box. But the textarea doesn't get updated.

Anyone got any ideas?
Image


Problem with textarea mapping

Posted: Fri Mar 07, 2014 1:17 pm
by Serhii Kulibaba

Hello Dennis!
Sorry, it is a bug. As a workaround add this JS on textarea mapping:
element.text(value);


Problem with textarea mapping

Posted: Fri Mar 07, 2014 1:41 pm
by Dennis Wormsbecher

tnx works fine....