I was wondering if there was a way to cancel the call to super like we can do in Form extensions in Form control event handlers. For instance:
public void method(Object _obj)
{
super(_obj);
// some logic
}
It seems like wishful thinking but, I need to call super only after that logic is executed.
So I was wondering if there was a way to cancel the call to super in the PreHandler of this method and then call it again in the PostHandler?
*This post is locked for comments
I have the same question (0)