or
In Firefox 3.6, the content area of the scheduler is pushed to the right (see screenshot). I've determined the problem is that the navigation pane (with the buttons to navigate months) is too tall and so the content div gets displaced. This problem happens only in Firefox.
If I set ShowNavigationPane to false, this problem disappears. Also, I can fix the problem with this CSS rule that limits the height of the navigation pane:
1..RadScheduler_Default div.rsTopWrap div.rsHeader p {height:29px !important;}This problem does not happen with the online Scheduler demos, so what am I doing differently? Am I missing something? I am using RadControls v. 2010.2.713.20, and below is my entire test page:
01.<%@ Page Language="C#" %> 02.<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> 03.<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 04.<html xmlns="http://www.w3.org/1999/xhtml"> 05.<head runat="server"></head> 06.<body> 07. <form id="form1" runat="server"> 08. <asp:ScriptManager ID="ScriptManager1" runat="server" /> 09. <div> 10. <telerik:RadScheduler runat="server" ID="RadScheduler1"11. DataKeyField="Id" DataSubjectField="Subject"12. DataStartField="Start" DataEndField="End" /> 13. </div> 14. </form> 15.</body> 16.</html>Thanks,
jake


ParentRecordsRow[0] = "EVENT"ParentRecordsRow[1] = "CLASS"RadMenu1.Flow = ItemFlow.Vertical;//Add the RootRadMenuItem item = new RadMenuItem("Choose");//item.Text = "Add New Items";RadMenu1.Items.Add(item);//Bind Menfor (int KK = 0; KK < ParentRecordsRow.Count ; KK++){ RadMenuItem itemSeparator = new RadMenuItem(); RadMenuItem childItem = new RadMenuItem(ParentRecordsRow[KK]); //add the menu items item.Text = ParentRecordsRow[KK]; //item.ImageUrl = "~/images/o!logo.png"; item.Items.Add(childItem); }<telerik:RadGrid ID="grdShareHolder" runat="server" AllowPaging="True" AutoGenerateColumns="False" Font-Names="tahoma" GridLines="None" ShowGroupPanel="True" Skin="Office2007" onitemcommand="grdShareHolder_ItemCommand" PageSize="20" onneeddatasource="grdShareHolder_NeedDataSource"> <ClientSettings AllowDragToGroup="True"> </ClientSettings> <MasterTableView DataKeyNames="ShareHolderID" Font-Names="tahoma" Font-Size="Small"><telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="btnSearch"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="btnSearch" LoadingPanelID="RadAjaxLoadingPanel1" UpdatePanelHeight="" /> <telerik:AjaxUpdatedControl ControlID="grdShareHolder" UpdatePanelHeight="" /> </UpdatedControls> </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="grdShareHolder"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="grdShareHolder" UpdatePanelHeight="" /> <telerik:AjaxUpdatedControl ControlID="rwmEditshareHolder" LoadingPanelID="RadAjaxLoadingPanel1" UpdatePanelHeight="" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManager>