Hi,
My issue is I want to disable a button if the user has entered a text field and then re-enable it once the focus is changed. In the OnSelect() method I can set the Mode of the button but there is the lack of the opposite of the OnSelect() method to reneable the button.
I tried putting the code in the OnChange() method. The start of the OnChange() method disables the button and the very last bit of code re-enables the button. However if the user is in the text field and changes some value, and then clicks the button without clicking anywhere else on the app, the onChange() method is not being executed before the button code which I need it to do.
How can I achieve this?