IDEMPIERE-2394 zk7 - Event window unusable on Calendar
This commit is contained in:
parent
da437c8d1c
commit
3f78dc2262
|
@ -46,7 +46,7 @@ import org.zkoss.zk.ui.WrongValueException;
|
||||||
import org.zkoss.zk.ui.event.Event;
|
import org.zkoss.zk.ui.event.Event;
|
||||||
import org.zkoss.zk.ui.event.EventListener;
|
import org.zkoss.zk.ui.event.EventListener;
|
||||||
import org.zkoss.zk.ui.event.Events;
|
import org.zkoss.zk.ui.event.Events;
|
||||||
import org.zkoss.zul.Center;
|
import org.zkoss.zul.North;
|
||||||
import org.zkoss.zul.South;
|
import org.zkoss.zul.South;
|
||||||
import org.zkoss.zul.Timebox;
|
import org.zkoss.zul.Timebox;
|
||||||
|
|
||||||
|
@ -249,12 +249,12 @@ public class RequestWindow extends Window implements EventListener<Event> {
|
||||||
borderlayout.setHflex("1");
|
borderlayout.setHflex("1");
|
||||||
borderlayout.setVflex("min");
|
borderlayout.setVflex("min");
|
||||||
|
|
||||||
Center centerPane = new Center();
|
North northPane = new North();
|
||||||
centerPane.setSclass("dialog-content");
|
northPane.setSclass("dialog-content");
|
||||||
centerPane.setAutoscroll(true);
|
northPane.setAutoscroll(true);
|
||||||
borderlayout.appendChild(centerPane);
|
borderlayout.appendChild(northPane);
|
||||||
|
|
||||||
centerPane.appendChild(grid);
|
northPane.appendChild(grid);
|
||||||
grid.setVflex("1");
|
grid.setVflex("1");
|
||||||
grid.setHflex("1");
|
grid.setHflex("1");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue