Hi,
Once the advance form is loaded on the page that needs to re-adjust itself to be able to see all the control regardless the screen resolution.
My form is "kinda" big as it contains controls on it so It would be good to be able to scroll down the screen while typing on it and trying to reach out other controls on it.
I am running the following script onLoad - However it sometimes doesn't allow me to scroll it down or to see the Close button at the top at least.
1.
window.setTimeout(
2.
function
() {
3.
var
oWnd = GetRadWindow();
4.
oWnd.SetWidth(document.body.scrollWidth + 4);
5.
oWnd.SetHeight(document.body.scrollHeight + 70);
6.
7.
}, 400);