IDEMPIERE-4855 Records of Tab level 2 disappear in particular case. (#751)

* IDEMPIERE-4855 Records of Tab level 2 disappear in particular case.
This commit is contained in:
hengsin 2021-06-30 21:38:22 +08:00 committed by GitHub
parent 3af91f69c1
commit a5c52e1a0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -1401,6 +1401,11 @@ public abstract class AbstractADWindowContent extends AbstractUIPart implements
if (value != newTabpanel)
{
newTabpanel.query();
if (newTabpanel instanceof ADTabpanel)
{
ADTabpanel adtabpanel = (ADTabpanel) newTabpanel;
Events.echoEvent(ADTabpanel.ON_POST_INIT_EVENT, adtabpanel, null);
}
}
else
{