IDEMPIERE-2969:update to use zk8-osgi library
http://books.zkoss.org/wiki/ZK_Component_Reference/Supplementary/Auxheader#Restrictions
This commit is contained in:
parent
72fca0bafc
commit
180e2e6b53
|
@ -170,8 +170,8 @@ public class WReportCustomization implements IFormController,EventListener<Even
|
||||||
|
|
||||||
form.setStyle("width: 90%; height: 90%; position: absolute; border:none; padding:none; margin:none;");
|
form.setStyle("width: 90%; height: 90%; position: absolute; border:none; padding:none; margin:none;");
|
||||||
|
|
||||||
ZKUpdateUtil.setHeight(headerPanel, "40px");
|
//ZKUpdateUtil.setHeight(headerPanel, "40px");
|
||||||
headerPanel.setWidth("100%");
|
//headerPanel.setWidth("100%");
|
||||||
|
|
||||||
headerPanel.appendChild(new Separator("vertical"));
|
headerPanel.appendChild(new Separator("vertical"));
|
||||||
|
|
||||||
|
|
|
@ -93,7 +93,7 @@ public class WRC4GroupingCriteriaPanel extends WRCTabPanel implements EventListe
|
||||||
int widthTxt = widthChk*4;
|
int widthTxt = widthChk*4;
|
||||||
for(int i=0;i<RENDER_IN_COLUMNS;i++){
|
for(int i=0;i<RENDER_IN_COLUMNS;i++){
|
||||||
cols[i] = new Column();
|
cols[i] = new Column();
|
||||||
ZKUpdateUtil.setWidth(cols[i+1], widthChk+"%");
|
ZKUpdateUtil.setWidth(cols[i], widthChk+"%");
|
||||||
columns.appendChild(cols[i]);
|
columns.appendChild(cols[i]);
|
||||||
cols[i+1] = new Column();
|
cols[i+1] = new Column();
|
||||||
ZKUpdateUtil.setWidth(cols[i+1], widthTxt+"%");
|
ZKUpdateUtil.setWidth(cols[i+1], widthTxt+"%");
|
||||||
|
|
Loading…
Reference in New Issue