Hi everyone,
I am having problems with window position.
If my portal is set to english language, there are no problem.
If my portal is set to hebrew language, I have troubles with position of windows. Some windows are moved to left, some are moved to right...and some are moved out of the screen.
Code:
IWDWindowInfo windowInfo = (IWDWindowInfo)wdComponentAPI.getComponentInfo().findInWindows("MyWindow"); IWDWindow window = wdComponentAPI.getWindowManager().createWindow( windowInfo, true); window.setWindowPosition(WDWindowPos.CENTER); window.open();
Can someone help ?
Thanks in advance.
David,
turn down with:
window.setWindowPosition(XXX,YYY);
Could be usefull, find some CODE that give you MAX_WIDTH and MAX_HEIGHT of client browser and after
window.setWindowPosition(func(MAX_WIDTH),func(MAX_HEIGHT));
Message was edited by: Roberto Tagliento
Add a comment