Hi Dan
I've done some playing around and yes, when I run the Demo, it appears at the current date, not the start date.
My code is:
<DayPilot:DayPilotScheduler ID="DayPilotScheduler1"
runat="server" Days="365" StartDate="2007-03-01"
ScrollPosition="2007-09-22"
DataStartField="startTime" DataEndField="endTime"
DataTextField="Title" DataValueField="calendar_id"
HeaderFontSize="8pt" HeaderHeight="17"
DataResourceField="eventCategory" EventHeight="40"
CellDuration="1440" CellWidth="30" CellGroupBy="Month"
TimeRangeSelectedHandling="Hold"
DataTagFields="TextColour, ToolTip"
ClientObjectName="dps1" Width="500px"
OnBeforeEventRender="DayPilotScheduler1_BeforeEventRender"
OnEventClick="DayPilotScheduler1_EventClick" EventClickHandling="PostBack"
>
<Resources>
<DayPilot:Resource Name="Short Obj" Value="1000" />
<DayPilot:Resource Name="Medium Obj" Value="1001" />
<DayPilot:Resource Name="Long Obj" Value="1002" />
<DayPilot:Resource Name="Nutrition" Value="1005" />
<DayPilot:Resource Name="Competition" Value="1004" />
<DayPilot:Resource Name="Private" Value="1006" />
<DayPilot:Resource Name="Coaches " Value="1007" />
<DayPilot:Resource Name="Training" Value="1003" />
</Resources>
</DayPilot:DayPilotScheduler>
WIthin the C# code file, the only meddling I so is:
DayPilotScheduler1.DataSource = myDataSet;
DayPilotScheduler1.DataBind();
and of course the event handling and render functions. I even tried taking out the render functionality (both in aspx and cs) and no difference made.
I don't use AJAX at all with this project.
Any ideas?
Thanks
Andy