Vilmar
April 16, 2025, 12:55am
1
So i am trying to use a money input mask, it was working fine for almost a year, but now it’s not working.
The current value is right on the change variable action
On the console it is right too, and even sending the value as an api works fine
But on the input itself the value is not being updated
Vilmar
April 16, 2025, 12:56am
2
The current value is right on the change variable action
Vilmar
April 16, 2025, 12:56am
3
On the console it is right too, and even sending the value as an api works fine
Many of the fields got broken after an update, you should report this at support.weweb.io
josh
May 6, 2025, 2:29am
5
This is still an issue. I just realized it today. The function was working fine before. It’s changing the input’s value but not the displayed value. This is frustrating
Yaj
May 6, 2025, 10:37pm
6
Yea there’s already been a few discussions on this.
The current weweb solution/work around is less than ideal which you can find here
Hey @tcc , I’ve found a workaround for these input bugs. Instead of using the “reset variable value” action, you can use a Custom JavaScript action, use document.getElementById() to select the input and then change it’s value via JS.
For this, first of all, you’ll have to define an id to your input. It’s under HTML attributes (near Element’s name). This must be unique! Let’s say yours is gonna be inputChatPrompt.
Next, head back to your workflow, and on the Custom JavaScript action, on the Java…