IDEMPIERE-2476 ZK7 / Report wizard bottom navigation not visible properly / integrate patch from Pritesh Shah

This commit is contained in:
Carlos Ruiz 2015-07-28 22:17:15 -05:00
parent 6aa16930d2
commit 88eeb0cdba
2 changed files with 10 additions and 3 deletions

View File

@ -222,8 +222,9 @@ public class WReportCustomization implements IFormController,EventListener<Even
headerPanel.appendChild(new Separator("horizontal"));
tabbox.setWidth("100%");
tabbox.setHeight("87%");
tabbox.setWidth("100%");
tabbox.setHeight("84%");//IDEMPIERE-2476, Pritesh Shah
tabfo2.addEventListener(Events.ON_CLICK, this);
tabsc3.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);
}
foot.setSclass("report-wizard-footer");//IDEMPIERE-2476, Pritesh Shah
confirmPanelMain.addComponentsLeft(btnSave);
if (m_isCanExport)

View File

@ -82,3 +82,7 @@
border: solid 1px #9CBDFF;
}
<%-- report wizard --%>
.report-wizard-footer {
width: 100%;
}