Hello everybody.
I have an aspx file using the RadDockLayout, RadDockZone and RadDock controls and they look very diferent in IE6 and FF.
How can I make they look equal?.
Here is the aspx code:
I have an aspx file using the RadDockLayout, RadDockZone and RadDock controls and they look very diferent in IE6 and FF.
How can I make they look equal?.
Here is the aspx code:
| <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebApplication2._Default" %> |
| <%@ 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 runat="server"> |
| <title>Untitled Page</title> |
| <style type="text/css"> |
| .style1 |
| { |
| width: 100%; |
| } |
| </style> |
| </head> |
| <body> |
| <form id="form1" runat="server"> |
| <telerik:RadScriptManager runat="server"> |
| </telerik:RadScriptManager> |
| <div> |
| <telerik:RadDockLayout ID="RadDockLayout1" runat="server" StoreLayoutInViewState="True"> |
| <table class="style1"> |
| <tr> |
| <td valign="top"> |
| <telerik:RadDockZone ID="RadDockZone1" runat="server" MinHeight="500px"> |
| <telerik:RadDock ID="RadDock1" runat="server" Width="300px"> |
| <ContentTemplate> |
| hello world |
| </ContentTemplate> |
| </telerik:RadDock> |
| </telerik:RadDockZone> |
| </td> |
| <td valign="top"> |
| <telerik:RadDockZone ID="RadDockZone2" runat="server" MinHeight="500px"> |
| </telerik:RadDockZone> |
| </td> |
| </tr> |
| </table> |
| </telerik:RadDockLayout> |
| </div> |
| </form> |
| </body> |
| </html> |