Hello.
I’m using (Require Confirm - One Shot Buttom - Input) and the user needs to click in Yes or No to allow to go to the next step (unhide other parts). I need to get the confirmation “YES” for that. How can I get this “Yes” click?
Thanks.
Hello.
I’m using (Require Confirm - One Shot Buttom - Input) and the user needs to click in Yes or No to allow to go to the next step (unhide other parts). I need to get the confirmation “YES” for that. How can I get this “Yes” click?
Thanks.
I believe the onActionPerformed
event is triggered when “yes” is clicked. Put your logic there.
Sorry, but how can I use event to get the yes answer?
Could you give me an example (event.)?
if event.confirm == 'Yes':
self.getChild("TestLabel").props.text = self.props.value
It was simpler than I thought
Thanks.