Hi,
I have a scenario like this. I open a small modal RadWindow of the size(300,400) from the ContextMenu of the Radgrid. I want to open a second RadWindow (size maximum possible as per the window size and resolution) when I click on the link in the first RadWindow. As I understand, when I open the second radWindow from first one, the second window is always within the first window, is it possible to open the second RadWindow with maximum screen size possible?
I am using following Javascript code to get the screen width and height and want to open the second RadWindow with this size.
Thanks.
I have a scenario like this. I open a small modal RadWindow of the size(300,400) from the ContextMenu of the Radgrid. I want to open a second RadWindow (size maximum possible as per the window size and resolution) when I click on the link in the first RadWindow. As I understand, when I open the second radWindow from first one, the second window is always within the first window, is it possible to open the second RadWindow with maximum screen size possible?
I am using following Javascript code to get the screen width and height and want to open the second RadWindow with this size.
w = window.screen.availWidth;
h = window.screen.availHeight;
Thanks.