Reputation: 201
Hiii, I have run script code in one action group where i have my java code, is there is any way to exit the action group conditionally through java code means condition wise it will be decided whether to exit action group or continue.
Is there is any way to cancel installation through java code based on condition or navigate to particular screen conditionally i have this script under installation action.
context.cancel() didn't worked for me.
Upvotes: 1
Views: 108
Reputation: 48035
Action groups have a "On error break group" property. If set, any failed action will break out of the action group, for example if you return false
from a "Run script" action.
Upvotes: 1