Hello,
I have the following issue:
I have an entity A with a list of other entities B. In the edit screen of A, I want to display the list of Bs. Creating Bs requires custom logic (calling a service). When creating one B, two Bs need to be created.
What would be the correct approach here?
In the edit screen of B, I have overridden the onWindowCommitAndClose method. There, I invoke my logic and save the two new Bs. After closing the dialog, I want to see the two Bs in the list.
Thank you very much, Reini