Hi !
I have the following form extension class:
[ExtensionOf(formStr(EcoResProductDetailsExtended))] public final class EcoResProductDetailsExtended_Extension { public Set myMethod() { Set mySet;
return mySet; } }
Then I want to evaluate if that method exists before call it:
if (formHasMethod(_formRun, 'myMethod')) { localSet= _formRun.myMethod(); }
The formHasMethod return false. It isn't being able to evaluate the extension method. If I call myMethod() without checking for it before hand, it is executed correctly.
I'm trying to use MetadataSupport helper class but I'm not succeeding.
Does anyone have some clue about it?
Thanks!