Quote from
Gaev on September 9, 2019, 3:43 pm
@darbdenral
I have many textinput objects that are not in a form that require some user input.
What's the best method to add a required property to the textinput objects?
The answer depends on "the user action that requires use/access to the contents of the Text Input objects" ... if required when user ...
a) navigates to another page, you can check (place code) in the page's page-exit event section
b) click/taps a Push Button or similar object, you can check in that object's click/change event section
If none of the above, perhaps you can provide more details of your App's use of these Text Input values.
Adding some code to each object when the user exits the field?
That may not always work because the user may NEVER navigate to this object.
@darbdenral
I have many textinput objects that are not in a form that require some user input.
What's the best method to add a required property to the textinput objects?
The answer depends on "the user action that requires use/access to the contents of the Text Input objects" ... if required when user ...
a) navigates to another page, you can check (place code) in the page's page-exit event section
b) click/taps a Push Button or similar object, you can check in that object's click/change event section
If none of the above, perhaps you can provide more details of your App's use of these Text Input values.
Adding some code to each object when the user exits the field?
That may not always work because the user may NEVER navigate to this object.