I have a Radio Group that contain elements New, Old and Existing. When clicking on either of these values I have the OnChange rule firing to clear out a fields associated to these values. That way the user can enter data associate to that element.
For example:
OnChange Event of RadioGroup1
New --> Clears Field1, Field2, Field3. Display Field1
Old --> Clear Field1, Field2, Field3. Display Field2
Existing --> Clear Field1, Field2, Field3. Display Field3.
But on the initialization/loading of the form, the Radio Group OnChange event is automatically fired when SmartObject set the value of the Radio Group and clears out the data I want to display on Field1-3. How do I code to prevent this?