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:
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.
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.