I try to use an input widget and store the value into a variable using the “value” binding. But if I delete the current text and paste some new text into the field the value doesn’t update. Only if I delete one letter and replace it manually the value changes. Is there anything I have to do to handle copy and pasted text?
Have you tried setting the property ‘valueLiveUpdate’ to true for the Input? With this property, the Input’s value gets updated onLiveChange. If it is set to false, it gets updated onChange.