Unplanned
Last Updated: 12 Oct 2020 11:04 by ADMIN
I would like to use the paging buttons on a horizontal timeline to advance to the next and previous event. There is a work around with script but it does not address the first page and last page of the timeline. 
Unplanned
Last Updated: 24 Dec 2019 11:40 by ADMIN

Timeline should support datasource like most other Kendo MVC component (eg. Grid) with additional data. eg:

 

        @(Html.Kendo().Timeline<Models.HistoryView>()
                  .Name("Title")
                  .DataDateField("Date")
                  .DataDescriptionField("Description")
                  .DataTitleField("Item")
                  .Orientation(TimelineOrientation.Vertical)
                  .AlternatingMode()
                  .CollapsibleEvents()
                  .DataSource(dt => dt.Read("GetHistory", "Controller").Data("getPersonID"))
        )