In the screenshot below you can see that in firefox the appointments don't overlap but they do in IE7...this app is still being developed so there are no live versions out there. The window to the right is firefox and the window to the left is IE7. Also i haven't tested it with any other browsers.
http://img504.imageshack.us/img504/4271/calnk7.png
http://img504.imageshack.us/img504/4271/calnk7.png
3 Answers, 1 is accepted
0
Hello Ben,
We are unaware of such an issue with RadScheduler.
Could you please provide more information about your configuration? As a beginning, is there any custom CSS included in the page?
All the best,
Simon
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
We are unaware of such an issue with RadScheduler.
Could you please provide more information about your configuration? As a beginning, is there any custom CSS included in the page?
All the best,
Simon
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Ben
Top achievements
Rank 1
answered on 08 Jan 2009, 06:06 PM
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Calendar.aspx.vb" Inherits="ServerJobMetrics.Calendar" %> |
<%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %> |
<%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="cc1" %> |
<!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>Calendar View</title> |
</head> |
<body> |
<form id="form1" runat="server"> |
<center> |
<div> |
<img alt="" src="images/servermetrics.png" style="width: 1020px; height: 150px" border="1" /> |
</div> |
<div style="font-family: Calibri; width: 1020px; height: 270px;" align="center"> |
<table style="width: 100%;"> |
<tr> |
<td> |
<table style="width: 100%;"> |
<tr> |
<td> |
|
</td> |
<td align="center"> |
<a href="newjob.aspx"> |
<img alt="" src="Images/newjob.png" style="width: 111px; height: 45px" |
border="0" /></a> |
<img alt="" src="images/CalendarPressed.png" style="width: 111px; height: 45px" border="0" /> |
<a href="manage.aspx"> |
<img alt="" src="images/administration.png" style="width: 111px; height: 45px" border="0" /></a> |
</td> |
<td> |
|
</td> |
</tr> |
</table> |
<telerik:RadScriptManager ID="RadScriptManager1" runat="server"> |
</telerik:RadScriptManager> |
</td> |
</tr> |
<tr> |
<td> |
<asp:UpdatePanel ID="UpdatePanel1" runat="server" RenderMode="Inline"> |
<ContentTemplate> |
<telerik:RadScheduler style="Z-INDEX: 0" ID="RadCal" runat="server" Skin="Gray" OverflowBehavior="Expand"> |
</telerik:RadScheduler> |
</ContentTemplate> |
</asp:UpdatePanel> |
</td> |
</tr> |
<tr> |
<td height="400" valign="top"> |
<asp:Panel ID="Panel2" |
style="Z-INDEX: 1; LEFT: 40%; POSITION: absolute; Top: 233px; right: 40%; Background-image: url('Images/headercolor.png')" |
runat="server" |
BorderColor="Gray" BorderStyle="Solid" |
Font-Names="Calibri" Font-Size="Small" BorderWidth="1px" Width="400px" Height="25px" > |
<table> |
<tr> |
<td> |
<asp:Label ID="Label7" runat="server" Text="Criteria"/> |
<asp:Label ID="Label8" runat="server" Text="(Show Search Options...)"/> |
</td> |
<td> |
<asp:ImageButton ID="ImgExpCol" runat="server" |
ImageUrl="~/ServerMetrics/Images/expand.png" /> |
</td> |
</tr> |
</table> |
<asp:UpdatePanel ID="UpdatePanel3" runat="server"> |
<ContentTemplate> |
<asp:Panel ID="Panel1" style="Z-INDEX: 1; Background-image: url('Images/bodycolor.png')" |
runat="server" BorderColor="Gray" BorderStyle="Solid" |
Font-Names="Calibri" Font-Size="Small" BorderWidth="1px" Height="241px" |
Width="400px"> |
<table style="width:100%;"> |
<tr> |
<td> |
</td> |
</tr> |
<tr> |
<td> |
</td> |
</tr> |
</table> |
</asp:Panel> |
</ContentTemplate> |
</asp:UpdatePanel> |
<cc1:CollapsiblePanelExtender ID="Panel2_CollapsiblePanelExtender" |
runat="server" |
Enabled="True" |
collapsed="true" |
ExpandControlID="Panel2" |
CollapseControlID="Panel2" |
CollapsedText="(Show Search Options...)" |
ExpandedText="(Hide Search Options...)" |
ExpandedSize="490" |
ImageControlID="ImgExpCol" |
ExpandedImage="~/ServerMetrics/Images/collapse.png" |
CollapsedImage="~/ServerMetrics/Images/expand.png" |
SuppressPostBack="true" |
TargetControlID="Panel1" AutoExpand="False" AutoCollapse="False"/> |
</asp:Panel> |
</td> |
</tr> |
</table> |
</form> |
</body> |
</html> |
0
Ben
Top achievements
Rank 1
answered on 09 Jan 2009, 05:58 PM
Cleaned up my code and resolved the issue. Thanks.