Good Morning,
I am wanting to obtain the height and width of a RadWindow in client side javascript, after the window has been resized by the user.
My current code handles the OnResize event of the window as follows
function SetMapSize(sender, EventArgs)
{
var width = sender.get_width();
var height = sender.get_height();
}
Unfortunately this returns only the original size of the window not the new size after resizing.
Much appreciated.
Ernie Josefik
}
I am wanting to obtain the height and width of a RadWindow in client side javascript, after the window has been resized by the user.
My current code handles the OnResize event of the window as follows
function SetMapSize(sender, EventArgs)
{
var width = sender.get_width();
var height = sender.get_height();
}
Unfortunately this returns only the original size of the window not the new size after resizing.
Much appreciated.
Ernie Josefik
}