I have a RadTabStrip + RadMultiPageView + RadPageView + RadWindow on mainpage.aspx
RadPageView I am utilizing contenturl='contentpage.aspx'
I am wanting to do the following call on contentpage.aspx
But this only sets it to full screen within the bounds of RadPageView.
I cant do
var w = parent.radopen('dialogpage.aspx', null);
as I loose the ability to send requests back to the opening page utilizing:
UpdateFromPopup would be called on mainpage.aspx instead of contentpage.aspx
any ideas on how to get the radwindow to maximize??
RadPageView I am utilizing contenturl='contentpage.aspx'
I am wanting to do the following call on contentpage.aspx
var w = radopen('dialogpage.aspx', null);
w.maximize();
w.set_behaviors(Telerik.Web.UI.WindowBehaviors.Close);
But this only sets it to full screen within the bounds of RadPageView.
I cant do
var w = parent.radopen('dialogpage.aspx', null);
w.maximize();
w.set_behaviors(Telerik.Web.UI.WindowBehaviors.Close);
as I loose the ability to send requests back to the opening page utilizing:
function
GetRadWindow()
{
var
oWindow =
null
;
if
(window.radWindow) oWindow = window.radWindow;
//Will work in Moz in all cases, including clasic dialog
else
if
(window.frameElement.radWindow) oWindow = window.frameElement.radWindow;
//IE (and Moz as well)
return
oWindow;
};
function
CloseAndRebind()
{
GetRadWindow().Close();
GetRadWindow().BrowserWindow.UpdateFromPopup(
'information being passed back'
);
};
UpdateFromPopup would be called on mainpage.aspx instead of contentpage.aspx
any ideas on how to get the radwindow to maximize??