This is a migrated thread and some comments may be shown as answers.

Page_Load is not firing - RadWindow

1 Answer 164 Views
Window
This is a migrated thread and some comments may be shown as answers.
Robert
Top achievements
Rank 1
Robert asked on 16 Dec 2010, 07:14 PM
I have a page, let's call this main.aspx. Within main.aspx I have a splitter and load content into let's say [header] frame and [content] frame. I also have a RadWindow on main.aspx that I call to open for errors.

Within the [content] frame I have a grid using a edit Template to edit rows of the grid. If an update fails I reference and open the RadWindow using a method such as this:
var op = parent;         
var oWnd = op.GetRadMessageWindow()
oWnd.moveTo(-1000,-1000) 
oWnd.add_pageLoad(OnClientLoadMsg);
oWnd.add_close(OnClientCloseMsg);          
oWnd.setUrl("RTS_Message_Window.aspx");
oWnd.show();

The problem is that none of the server-side Page events are NOT being fired. 
I can see that the content is being loaded and I can debug client side window load events but why are the server-side events not being fired? 
This used to work. I imagine this stopped working after Ajax 2009 Q3 release.

1 Answer, 1 is accepted

Sort by
0
Robert
Top achievements
Rank 1
answered on 16 Dec 2010, 08:29 PM
Although difficult to find...  this problem was tied to a <br> tag within the querystring.  So the malformed URL was preventing the Page events.

Tags
Window
Asked by
Robert
Top achievements
Rank 1
Answers by
Robert
Top achievements
Rank 1
Share this question
or