REMINDER
Please be respectful of all AppDragers! Keep it really civil so that we can make the AppDrag community of builders as embracing, positive and inspiring as possible.
Cloud backend input -> textarea : how to keep line-breaks?
-
Seems line-breaks are automatically removed, any way to keep them?
-
Hey Thomas
At client side you could encode them, if you are using a cloud backend action, in the mapping you can choose FORMULA instead of FIELD
and then type a formula like this:$("input[name='YourInputName']").val().replace(/\n/g, "<br/>")