IDEMPIERE-4545 Workflow activities - OK button cannot be reached in mobile (#378)
This commit is contained in:
parent
86823a72e5
commit
f3828f9cbf
|
@ -262,7 +262,7 @@ public class WWFActivity extends ADForm implements EventListener<Event>
|
|||
north.setSplittable(true);
|
||||
ZKUpdateUtil.setVflex(listbox, "1");
|
||||
ZKUpdateUtil.setHflex(listbox, "1");
|
||||
ZKUpdateUtil.setHeight(north, "50%");
|
||||
ZKUpdateUtil.setHeight(north, "49%");
|
||||
layout.appendChild(north);
|
||||
north.setStyle("background-color: transparent");
|
||||
listbox.addEventListener(Events.ON_SELECT, this);
|
||||
|
@ -270,7 +270,7 @@ public class WWFActivity extends ADForm implements EventListener<Event>
|
|||
Center center = new Center();
|
||||
center.appendChild(grid);
|
||||
layout.appendChild(center);
|
||||
center.setStyle("background-color: transparent");
|
||||
center.setStyle("background-color: transparent; overflow:auto");
|
||||
ZKUpdateUtil.setVflex(grid, "1");
|
||||
ZKUpdateUtil.setHflex(grid, "1");
|
||||
|
||||
|
@ -501,7 +501,7 @@ public class WWFActivity extends ADForm implements EventListener<Event>
|
|||
fDescription.setText ("");
|
||||
fHelp.setText ("");
|
||||
fHistory.setContent(HISTORY_DIV_START_TAG + " </div>");
|
||||
statusBar.setStatusDB("0/0");
|
||||
statusBar.setStatusDB("0/" + m_activities.length);
|
||||
statusBar.setStatusLine(Msg.getMsg(Env.getCtx(), "WFNoActivities"));
|
||||
}
|
||||
return m_activity;
|
||||
|
|
Loading…
Reference in New Issue