Hi,
i am desperately trying to open a Popup in full size.
Is there any API-Method to do so?
My current attempt dont work:
Code:
this.popupUI = (BrowserPopupUI) dispatcher
.getDispatchedBean(BrowserPopupUI.class);
this.popupUI.setMyController(this);
popupInstance = dispatcher.createModalPopup();
popupInstance.open("/browserPopup.jsp", title, 0, 0, this);
popupInstance.maximize(true);
this.popupUI.customMethod();
I found the Maximize attribute, but setting it like above dont affect the size in any way.
greetz