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

Some funny stuffs on Telerik Windows

2 Answers 60 Views
Window
This is a migrated thread and some comments may be shown as answers.
Jacob
Top achievements
Rank 1
Jacob asked on 12 May 2011, 05:33 AM
Hi,

May I know why some funny stuffs appeared at the title of the Telerik Windows? Please view the attachment as your reference.

Thanks

2 Answers, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 12 May 2011, 09:02 AM
Hello Jacob,

I suppose you have some global CSS styles applied to elements like: TABLE, TR, TD, UL and/or LI. If you have one, it will apply some additional styles to the controls.
Here is the sample page that I tried. This worked as expected.
aspx:
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
    <telerik:RadWindow ID="rw1" runat="server" VisibleOnPageLoad="true" Width="300" Height="300"
        Top="50" Left="20" EnableShadow="true" Behaviors="Default">
    </telerik:RadWindow>
    </form>
</body>

For the same page I have applied the style for the elements TABLE, TR, TD, UL and/or LI. It breaks the window design.
<head runat="server">
    <title></title>
    <style type="text/css">
    table, tr, ul, li, td {padding: 10px; height: 40px;}
    </style>
</head>
<body>
 <form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
    <telerik:RadSkinManager ID="rs1" runat="server" ShowChooser="true"></telerik:RadSkinManager>
    <br /><br />
    <telerik:RadWindow ID="rw1" runat="server" VisibleOnPageLoad="true" Width="300" Height="300"
        Top="50" Left="20" EnableShadow="true" Behaviors="Default">
    </telerik:RadWindow>
 </form>
</body>

Hope its clear

Thanks,
Princy.
0
Jacob
Top achievements
Rank 1
answered on 12 May 2011, 12:01 PM
Hi Princy,

Thanks for your replied... I will give a try.
Tags
Window
Asked by
Jacob
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Jacob
Top achievements
Rank 1
Share this question
or