This is a simplified version of my case.
Layout
- A choice box with 3 options.
- A textarea T1
- An input text field.
- A textarea t2
Expectation
- When the user clicks on an option the selected option is displayed in the T1 instantly.
- T2 displays instantly what's currently present in input text field.
Implementation so far
- I added a method for onKeyTyped for the text field and #2 works.
- I added a method for onMouseClicked for the choice box. #2 doesn't work instantly. It takes another click on the choice box or key press on the text field to display the new value in T1. I also tried onAction and that too didn't work.