I essentially copied the code from the Scheduler demo. The only major differences are that I am utilizing an asp:ObjectDataSource to get data for the Timeline, and I did not set any of the DataRecurrence values. I'm not certain of what the DataRecurrence values even do, but the ObjectDataSource appears to be working correctly to pull the data (at least, it pulls the GroupBy labels correctly).
I have just one entry from a database being pulled for the actual timeline, for testing purposes. I cannot see the entry within the timeline. However, advancing the timeline forward shrinks the row height, making it appear that the data is pulled but is just not shown properly. I have attached a screenshot of this behavior.
Here is a sample of the Timeline control's code within my aspx file (I am not yet utilizing this control in the back-end):
I have just one entry from a database being pulled for the actual timeline, for testing purposes. I cannot see the entry within the timeline. However, advancing the timeline forward shrinks the row height, making it appear that the data is pulled but is just not shown properly. I have attached a screenshot of this behavior.
Here is a sample of the Timeline control's code within my aspx file (I am not yet utilizing this control in the back-end):
<telerik:RadScheduler runat="server" ShowViewTabs="false" OverflowBehavior="Expand" ColumnWidth="250px" TimelineView-NumberOfSlots="30" ID="timeline" GroupBy="Type" GroupingDirection="Vertical" DataSourceID="timelineDataSource" SelectedView="TimelineView" DataKeyField="RegulatoryResultsId" DataStartField="CreatedOn" DataEndField="ReceiveOn" DataSubjectField="Description"> |
<ResourceTypes> |
<telerik:ResourceType KeyField="TypeId" Name="Type" TextField="TypeName" ForeignKeyField="TypeValue" |
DataSourceID="timelineSectionSource" /> |
</ResourceTypes> |
</telerik:RadScheduler> |