IDEMPIERE-3933 Remove flickering in the find dialog
This commit is contained in:
parent
8d5a15aa34
commit
9a9512a484
|
@ -555,7 +555,7 @@ public class FindWindow extends Window implements EventListener<Event>, ValueCha
|
||||||
ZKUpdateUtil.setVflex(south, "min");
|
ZKUpdateUtil.setVflex(south, "min");
|
||||||
|
|
||||||
ZKUpdateUtil.setHeight(winAdvanced, "100%");
|
ZKUpdateUtil.setHeight(winAdvanced, "100%");
|
||||||
ZKUpdateUtil.setWidth(winAdvanced, "99%");
|
ZKUpdateUtil.setWidth(winAdvanced, "100%");
|
||||||
winAdvanced.addEventListener(Events.ON_OK,this);
|
winAdvanced.addEventListener(Events.ON_OK,this);
|
||||||
LayoutUtils.addSclass("find-window-advanced", winAdvanced);
|
LayoutUtils.addSclass("find-window-advanced", winAdvanced);
|
||||||
|
|
||||||
|
@ -635,7 +635,7 @@ public class FindWindow extends Window implements EventListener<Event>, ValueCha
|
||||||
winAdvanced = new Window();
|
winAdvanced = new Window();
|
||||||
winLookupRecord = new Window();
|
winLookupRecord = new Window();
|
||||||
Tabpanel tabPanel = new Tabpanel();
|
Tabpanel tabPanel = new Tabpanel();
|
||||||
tabPanel.setStyle("height: 100%; width: 100%; padding-right: 2px; margin: auto;");
|
tabPanel.setStyle("height: 100%; width: 100%;");
|
||||||
tabPanel.appendChild(winLookupRecord);
|
tabPanel.appendChild(winLookupRecord);
|
||||||
tabPanel.setId("simpleSearch");
|
tabPanel.setId("simpleSearch");
|
||||||
winMain.addTab(tabPanel, Msg.getMsg(Env.getCtx(), "Find").replaceAll("&", ""),false, true);
|
winMain.addTab(tabPanel, Msg.getMsg(Env.getCtx(), "Find").replaceAll("&", ""),false, true);
|
||||||
|
|
Loading…
Reference in New Issue