Hi
I have a dialog created using SysOperation framework where I have two string fields with overriden multiselect lookups.
Example:
FieldA values: parent1, parent2, parent3
FieldB values: child11, child12, child21, child31, child32, child33
And when I select for example parent3, I want other lookup to be populated with values: child31, child32, child33
What I did is I have overriden postBuild method (I tried also in postRun):
dlgFieldA.registerOverrideMethod(
methodStr(FormStringControl, modified),
methodStr(MyTestUIBuilder, updateOtherLookup),
this);
But the problem is that when I select values it doesn't hit modified method at all, It only hits when I manually type the value in the field (for example parent2) and in that case it works.
How can I achieve that it hits modified when I do a selection from the lookup? Should I override some other method and not modified?
Thanks in advance