IDEMPIERE-2476 ZK7 / Report wizard bottom navigation not visible properly / integrate patch from Pritesh Shah
This commit is contained in:
parent
6aa16930d2
commit
88eeb0cdba
|
@ -222,8 +222,9 @@ public class WReportCustomization implements IFormController,EventListener<Even
|
||||||
|
|
||||||
headerPanel.appendChild(new Separator("horizontal"));
|
headerPanel.appendChild(new Separator("horizontal"));
|
||||||
|
|
||||||
tabbox.setWidth("100%");
|
tabbox.setWidth("100%");
|
||||||
tabbox.setHeight("87%");
|
tabbox.setHeight("84%");//IDEMPIERE-2476, Pritesh Shah
|
||||||
|
|
||||||
tabfo2.addEventListener(Events.ON_CLICK, this);
|
tabfo2.addEventListener(Events.ON_CLICK, this);
|
||||||
tabsc3.addEventListener(Events.ON_CLICK, this);
|
tabsc3.addEventListener(Events.ON_CLICK, this);
|
||||||
tabgc4.addEventListener(Events.ON_CLICK, this);
|
tabgc4.addEventListener(Events.ON_CLICK, this);
|
||||||
|
@ -288,7 +289,9 @@ public class WReportCustomization implements IFormController,EventListener<Even
|
||||||
{
|
{
|
||||||
btnSave.setDisabled(true);
|
btnSave.setDisabled(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
foot.setSclass("report-wizard-footer");//IDEMPIERE-2476, Pritesh Shah
|
||||||
|
|
||||||
confirmPanelMain.addComponentsLeft(btnSave);
|
confirmPanelMain.addComponentsLeft(btnSave);
|
||||||
|
|
||||||
if (m_isCanExport)
|
if (m_isCanExport)
|
||||||
|
|
|
@ -82,3 +82,7 @@
|
||||||
border: solid 1px #9CBDFF;
|
border: solid 1px #9CBDFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
<%-- report wizard --%>
|
||||||
|
.report-wizard-footer {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue