Hi everyone,
I have a problem with Radwindow: I use a radwindow as a popup/Waiting panel in my application and it opens inside an other radwindow containing an aspx page.
This popup/Waiting radwindow contains an aspx page.
With IE 9 there are not problems : the content of the popup/Waiting radwindow is correctly displayed and closed when the application finishes the loading.
With Firefox 16.0.1 and Chrome 22.0.1229.94 m the popup/Waiting radwindow is correctly shown and closed, but the content of the popup/Waiting radwindow is not displayed(Blank page)
My code for popup/Waiting radwindow content is the following
The popup/Waiting radwindow is
And the javascript used to open the popup/waiting radwindow is:
As attachement two screenshots of the problem: 1st for IE; 2nd for firefox/Chrome
I have a problem with Radwindow: I use a radwindow as a popup/Waiting panel in my application and it opens inside an other radwindow containing an aspx page.
This popup/Waiting radwindow contains an aspx page.
With IE 9 there are not problems : the content of the popup/Waiting radwindow is correctly displayed and closed when the application finishes the loading.
With Firefox 16.0.1 and Chrome 22.0.1229.94 m the popup/Waiting radwindow is correctly shown and closed, but the content of the popup/Waiting radwindow is not displayed(Blank page)
My code for popup/Waiting radwindow content is the following
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Popup.aspx.vb" Inherits="Admin_AccountingManagement_Popup" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
id
=
"Head1"
runat
=
"server"
>
<
title
></
title
>
</
head
>
<
body
>
<
form
id
=
"form1"
runat
=
"server"
>
<
div
style
=
"vertical-align: middle"
>
<
table
align
=
"center"
>
<
tr
>
<
td
align
=
"center"
>
<
asp:Image
ID
=
"ImageWait"
runat
=
"server"
ImageAlign
=
"Middle"
ImageUrl
=
"~/Admin/images/ajax-loader.gif"
/>
</
td
>
<
td
>
<
div
id
=
"LabelConn"
style
=
"display: none"
align
=
"center"
>
No Service connection
</
div
>
</
td
>
</
tr
>
<
tr
>
<
td
>
<
asp:Label
ID
=
"LabelConnecting"
runat
=
"server"
Text
=
"Connecting...."
Font-Size
=
"X-Large"
></
asp:Label
>
</
td
>
<
td
align
=
"center"
>
<
input
id
=
"Button1"
type
=
"button"
value
=
"Close"
onclick
=
"Close()"
style
=
"display: none"
/>
</
td
>
</
tr
>
</
table
>
</
div
>
</
form
>
</
body
>
</
html
>
The popup/Waiting radwindow is
<telerik:RadWindow runat="server"
Width="300"
Height="150"
VisibleStatusbar="false"
ID="AddWindow"
Modal="true"
KeepInScreenBounds="true"
Behaviors="Default"
Skin="Vista"
ReloadOnShow="True" VisibleTitlebar="false" VisibleOnPageLoad="False" ShowContentDuringLoad="True">
</
telerik:RadWindow
>
function
Pop() {
var
wnd = $find(
"<%=AddWindow.ClientID%>"
);
wnd.show();
//wnd.setUrl("/Admin/Mailing/OpenRooms.aspx?IDMailing=" + IDMailing + "&SupplierID=" + IDSupplier);
wnd.setUrl(
"/Admin/AccountingManagement/Popup.aspx"
);
}
As attachement two screenshots of the problem: 1st for IE; 2nd for firefox/Chrome