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

Radwindow issue in google chrome browser

1 Answer 253 Views
Window
This is a migrated thread and some comments may be shown as answers.
CHETAN JAITLY
Top achievements
Rank 1
CHETAN JAITLY asked on 09 Oct 2009, 10:00 AM
Hi,
We have rad window appear issue in google chrome, in chrome the rad window is cutting from header and in header there is one dot symbol and "=" symbol appear. I have attached the image "radwin.jpg".  
It works fine in IE 7 and mozilla.

Aspx page where I have written code for opening rad window.

<%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %>
<!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>
<link href="../App_Themes/Office2009/Window.Office2009.css"rel="Stylesheet" type="text/css" />
<script language="javascript" type="text/javascript">
function OpenCopyPath(sUserName)
{
    var page = "test_RadWindow.aspx";
    var oWnd = $find("RadWindow1"); 
    oWnd.setSize(380,345);//W,H
    oWnd.setUrl(page);
    oWnd.show();
    oWnd.center();
    return false;
}
</script>
</head>
<body >
<form id="form1" runat="server">
 <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
    </telerik:RadScriptManager>
<asp:Button ID="btnGoheIL" runat="server" CssClass="btn" Text="Go"
             onClientClick="return OpenCopyPath('PatniDev');" Width="45px" />
    <telerik:RadWindowManager   ID="Singleton"
            EnableEmbeddedSkins="False" Skin="Office2009"
            VisibleStatusbar="False" Behavior="Close" 
            IconUrl="~/Images/logo_popup.png" runat="server" Behaviors="Close"
            InitialBehavior="None" Left="" 
            style="display: none;" Top="" >
            <Windows>
                <telerik:RadWindow ID="RadWindow1" VisibleStatusbar="false" Height="420px"
                    Width="575px" Modal="true" runat="server"  >
                </telerik:RadWindow>
            </Windows>
        </telerik:RadWindowManager>
   
 </form>
</body>
</html>

Let me know if you have any suggestion
Waiting for your response.

Thanks,
Jalpesh

1 Answer, 1 is accepted

Sort by
0
Georgi Tunev
Telerik team
answered on 09 Oct 2009, 10:35 AM
Hi Jalpesh,

I ran your code locally but everything is working fine on my side. I see that you are using a custom skin for the RadWindow, so my guess is that the reason for the problem might be related to that fact.
Please open a support ticket and send us a sample project - we will check it and do our best to help.

Regards,
Georgi Tunev
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Window
Asked by
CHETAN JAITLY
Top achievements
Rank 1
Answers by
Georgi Tunev
Telerik team
Share this question
or