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

RadWindow show incorrect in Chrome new version 58.0.3029.110 (64-bit)

2 Answers 138 Views
Window
This is a migrated thread and some comments may be shown as answers.
The
Top achievements
Rank 1
The asked on 04 Jun 2017, 04:21 AM

Hi all,

I have simple RadWindow container one lable and one RadTabStrip, when i update Chrome to lastest version 58.0.3029.110 (64-bit), 

RadRabStrip show incorrect possition in RadWindow (before update is correct).

I have use IE to open RadWindow, it is OK.

Please help me.

 

 

2 Answers, 1 is accepted

Sort by
0
John
Top achievements
Rank 1
answered on 04 Jun 2017, 04:42 AM

I don't work for Telerik, but perhaps I might be able to help you.

Have you tried to override the CSS using the !Important yet by chance?

Could you perhaps mention the version of controls you are using, and paste a snippet of the code so i can see if I can replicate this so I might be able to perhaps offer a solutions or workaround?

0
The
Top achievements
Rank 1
answered on 09 Jun 2017, 10:18 AM

I am using version 2015.2.826.40 of Telerik Web UI. 

I don't override the CSS in my page. My code here:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm2.aspx.cs" Inherits="Click.WebForm2" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>    
</head>
<body>
    <form id="form1" runat="server">
        <div>
            <asp:ScriptManager runat="server"></asp:ScriptManager>

            <telerik:RadWindowManager ID="RadWindowManager1" runat="server">
                <Windows>
                    <telerik:RadWindow runat="server" VisibleOnPageLoad="true" ID="RadWindow1" Width="300px" Height="300px">
                        <ContentTemplate>
                            <label>Hello World!</label>
                            <div>
                                <telerik:RadTabStrip ID="RadTabStrip2" runat="server" MultiPageID="RadMultiPage1"  Align="Left">
                                    <Tabs>
                                        <telerik:RadTab Text="Tab1" Selected="true"></telerik:RadTab>
                                        <telerik:RadTab Text="Tab2"></telerik:RadTab>
                                    </Tabs>
                                </telerik:RadTabStrip>
                            </div>
                        </ContentTemplate>
                    </telerik:RadWindow>
                </Windows>                
            </telerik:RadWindowManager>
        </div>
    </form>
</body>
</html>


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