I have a Form with 25 text controls
Now we need to add the same validate method to these 25 text controls for verification.
The most basic method is to write the validate method 25 times and add it in turn.
I want to find a smarter way.
In addition, in my front-end development experience, I can use the mechanism of event bubbling to delegate events.
The simple explanation is: you only need to write methods in the parent node to bind events to all child nodes.
When the child node triggers the action, the binding method will be executed automatically.
Is there a similar method in ax2012?
Looking forward to your reply