IDEMPIERE-193 Zk6: Account editor dialog not render correctly

This commit is contained in:
Heng Sin Low 2012-03-12 17:55:18 +08:00
parent 14b2ea7cc6
commit 1eb1f8ab6f
1 changed files with 8 additions and 16 deletions

View File

@ -89,7 +89,7 @@ public final class WAccountDialog extends Window
super (); super ();
this.setTitle(title); this.setTitle(title);
this.setHeight("500px"); this.setHeight("500px");
this.setWidth("700px"); this.setWidth("750px");
log.config("C_AcctSchema_ID=" + C_AcctSchema_ID log.config("C_AcctSchema_ID=" + C_AcctSchema_ID
+ ", C_ValidCombination_ID=" + mAccount.C_ValidCombination_ID); + ", C_ValidCombination_ID=" + mAccount.C_ValidCombination_ID);
@ -183,6 +183,7 @@ public final class WAccountDialog extends Window
// //
Caption caption = new Caption(Msg.getMsg(Env.getCtx(),"Parameter")); Caption caption = new Caption(Msg.getMsg(Env.getCtx(),"Parameter"));
parameterPanel.appendChild(caption); parameterPanel.appendChild(caption);
parameterPanel.setHflex("1");
parameterPanel.setStyle("background-color: transparent;"); parameterPanel.setStyle("background-color: transparent;");
toolBar.setOrient("vertical"); toolBar.setOrient("vertical");
toolBar.setStyle("border: none; margin: 5px"); toolBar.setStyle("border: none; margin: 5px");
@ -211,19 +212,9 @@ public final class WAccountDialog extends Window
Borderlayout layout = new Borderlayout(); Borderlayout layout = new Borderlayout();
layout.setParent(this); layout.setParent(this);
if (AEnv.isFirefox2()) layout.setHeight("100%");
{ layout.setWidth("100%");
layout.setHeight("93%"); layout.setStyle("background-color: transparent;");
layout.setWidth("98%");
layout.setStyle("background-color: transparent; position: absolute;");
this.setStyle("position: relative;");
}
else
{
layout.setHeight("100%");
layout.setWidth("100%");
layout.setStyle("background-color: transparent;");
}
North nRegion = new North(); North nRegion = new North();
nRegion.setParent(layout); nRegion.setParent(layout);
@ -305,7 +296,7 @@ public final class WAccountDialog extends Window
parameterLayout.makeNoStrip(); parameterLayout.makeNoStrip();
parameterLayout.setOddRowSclass("even"); parameterLayout.setOddRowSclass("even");
parameterLayout.setParent(parameterPanel); parameterLayout.setParent(parameterPanel);
parameterLayout.setStyle("background-color: transparent;"); parameterLayout.setStyle("background-color: transparent; margin:none; border:none; padding:none;");
m_rows = new Rows(); m_rows = new Rows();
m_rows.setParent(parameterLayout); m_rows.setParent(parameterLayout);
@ -496,6 +487,7 @@ public final class WAccountDialog extends Window
m_row.appendChild(div); m_row.appendChild(div);
m_row.appendChild(editor.getComponent()); m_row.appendChild(editor.getComponent());
editor.fillHorizontal();
editor.dynamicDisplay(); editor.dynamicDisplay();
// //
m_newRow = !m_newRow; m_newRow = !m_newRow;