Input value is not submitted

Hello,

I am facing a really frustrating issue.
Here is the editor view : https://openforhelp.bubbleapps.io/version-test?debug_mode=true

Basically I want to insert text (here emoji) in an input by clicking on a button.
It’s almost working but I facing a bug when saving the datas:

The emoji appears in the input textbox but it is not saved in the db unless something else is taped behind.

Concretly : " :key: " won’t be saved but " :key: bb " will be … you can try.

It is like if the text inserted when clicked on the button is not “real” value…

I am changing value using Javascript in workflow :
$(’#textarea’).val($(’#textarea’).val() + $(’#star’).val());

I read that it is better to use attr. here : https://stackoverflow.com/questions/11873721/jquery-val-change-doesnt-change-input-value

but impossible to make it work as well

Hope someone will be able to help with that.

This topic was automatically closed after 70 days. New replies are no longer allowed.