Hello,
I 've the form\bomconsistof based on bomversion datasource
When I change one grid field of the bomversion_ds I need to show
the prodtable related to this bomversion
Then I added the following in bomversion's validatefield() method:
Args args = new Args();
args.record(mybomversion);
new MenuFunction(MenuItemDisplayStr(ProdTableEditList),MenuItemType::Display).run(Args);
and added a range in the in the prodtable based on this bomversion
and all works fine
When I lost focus on this bomversion_ds line the linkactive method of the form\prodtable is called
and the args().record contains the current focused bomversion
There are no relations between BomVersion and prodtable at table level
My question is :
Why the prodtable form remains linked to the bomversion_ds and the linkactive method is always called? I don't need this, I just want to load the prodtable one time
How can I "unlink" the two forms?