I want the user to be able to click a button and set the value of a textinput or select box. I've tried adding this JS to the Event handler of the button, but it does nothing:
textInput.value="Hello";
I want the user to be able to click a button and set the value of a textinput or select box. I've tried adding this JS to the Event handler of the button, but it does nothing:
textInput.value="Hello";
textInput.setValue('Hello');
Thanks Scott, its the little things!