IDEMPIERE-2394 zk7 - Event window unusable on Calendar / same fix for Request Feedback

This commit is contained in:
Carlos Ruiz 2015-01-11 13:48:08 -05:00
parent 3f78dc2262
commit 617a24c4f4
1 changed files with 6 additions and 6 deletions

View File

@ -58,8 +58,8 @@ import org.zkoss.zk.ui.event.Events;
import org.zkoss.zk.ui.event.UploadEvent; import org.zkoss.zk.ui.event.UploadEvent;
import org.zkoss.zk.ui.util.Clients; import org.zkoss.zk.ui.util.Clients;
import org.zkoss.zul.Borderlayout; import org.zkoss.zul.Borderlayout;
import org.zkoss.zul.Center;
import org.zkoss.zul.Div; import org.zkoss.zul.Div;
import org.zkoss.zul.North;
import org.zkoss.zul.South; import org.zkoss.zul.South;
/** /**
@ -197,12 +197,12 @@ public class FeedbackRequestWindow 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");