Hi,
We are using GWT 2.8.2 and SmartGWT 6.1-p20170724 power version.
On first time on both android and iPhone popup created by Window.show() comes in centre however if I close the popup and open it again, it moves to the top of the screen instead of centre.
code :
We tried using Window.setTop() also however it comes with Top: 0px always.
We are using GWT 2.8.2 and SmartGWT 6.1-p20170724 power version.
On first time on both android and iPhone popup created by Window.show() comes in centre however if I close the popup and open it again, it moves to the top of the screen instead of centre.
code :
Code:
window = new Window(); window.setIsModal(true); window.setShowModalMask(true); window.setKeepInParentRect(true); window.setWidth(350); window.setTitle(MESSAGES.configViewAddRecipient()); window.setShowMinimizeButton(false); window.setShowMaximizeButton(false); window.centerInPage(); window.setAutoCenter(true); window.setShowFooter(false); window.setPadding(5); window.setHeight(180);
Comment