Completed
Last Updated: 09 Jun 2023 13:49 by ADMIN
Release R3.2023-Increment.1(19.July.2023)
Created by: Sasa
Comments: 0
Category: Timeline
Type: Bug Report
1

Bug report

Regression introduced in R3 2021. Reproducible with the LESS and the SASS themes.

Reproduction of the problem

Dojo example: https://dojo.telerik.com/icUZasIF/2

Current behavior

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.

Expected/desired behavior

Dates and circles are aligned.

Environment

  • Kendo UI version: 2022.1.412
  • jQuery version: x.y
  • Browser: [all]
Completed
Last Updated: 07 Jun 2022 12:12 by ADMIN
Release 2022.R2.SP.next

Bug report

Reproduction of the problem

  1. Set a class in the TimeLine's HtmlAttributes, e.g.,
.HtmlAttributes(new { @class = "test" })

Current behavior

The custom class is not applied to the TimeLine's wrapping element.

Expected/desired behavior

The custom class is applied to the TimeLine along with the pre-defined Kendo classes.

Environment

  • Kendo UI version: 2022.1.412
  • jQuery version: x.y
  • Browser: [all]
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"))
        )