.HtmlAttributes(new { @class = "test" })
The custom class is not applied to the TimeLine's wrapping element.
The custom class is applied to the TimeLine along with the pre-defined Kendo classes.
Regression introduced in R3 2021. Reproducible with the LESS and the SASS themes.
Dojo example: https://dojo.telerik.com/icUZasIF/2
The k-timeline-circle and the k-timeline-date-wrap elements are misaligned. The dates are displayed slightly below the level of the Timeline circles.
Dates and circles are aligned.
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"))
)