I have a screen with a few components (textInput, textArea, checkBox). I want to check if there has been any changes to the components. Foe example if text has been entered or checkbox has been clicked.
Is there a direct way to do this instead of checking value of each component and then setting a Boolean for this?
Thanks
The three Spark components you listed (TextInput, TextArea, CheckBox) all listen for a change event. Simply call a function to be notified when change events occur on each component, like so: