Planned
Last Updated: 21 Oct 2024 13:47 by ADMIN
Scheduled for 2024 Q4 (Nov)
Created by: Vitro
Comments: 0
Category: Date/Time Pickers
Type: Bug Report
1

Bug report

When trying to select a value from the modern Kendo UI TimePicker configured with Max and Min ranges, the currently selected value of the TimePicker is not updated.

Reproduction of the problem

  1. Go to this Progress Kendo UI Dojo.
  2. Open the TimePicker - notice it's at 9:00
  3. Click Set
  4. Value is set to 00:00.

Expected/desired behavior

The value should be set upon initial selection.

Potential Workarounds

  • Use Classic ComponentType
  • Turn off animations, and open/close the TimePicker. (Dojo)

Environment

Planned
Last Updated: 14 Oct 2024 15:01 by ADMIN
Scheduled for 2024 Q4 (Nov)

Bug report

In the Grid view of the FileManager, if you choose to Sort By Date from the Toolbar, the sort icon in the Grid's column header is missing.

Reproduction of the problem

  1. Open the Overview demo - https://demos.telerik.com/kendo-ui/filemanager/index
  2. Select the Grid View from the Toolbar
  3. Choose Sort By Date Created
  4. Sort the content from the Toolbar

Current behavior

The sort arrow icons are missing in the Grid's column header

Expected/desired behavior

The icons should be visible

Environment

  • Kendo UI version: 2024.3.806
  • Browser: [all]
Planned
Last Updated: 10 Oct 2024 08:27 by ADMIN
Scheduled for 2024 Q4 (Nov)
Created by: Matthew
Comments: 0
Category: Grid
Type: Bug Report
0

Bug report

When the Grid has media column configured and the browser is resized an error is thrown.

Reproduction of the problem

  1. Run the Dojo: https://dojo.telerik.com/UFuJacem
  2. Resize a column
  3. Resize the browser window

Current behavior

An error: Uncaught TypeError: Cannot read properties of undefined (reading 'contains') is thrown.

Expected/desired behavior

There should be no error in the browser cosole.

The issue is a regression starting with 2024.3.806

Environment

  • Kendo UI version: 2024.3.806
  • Browser: [all ]
Planned
Last Updated: 09 Oct 2024 10:39 by Oleksii
Scheduled for 2024 Q4 (Nov)
Created by: Oleksii
Comments: 6
Category: Chart
Type: Bug Report
1

Description: When 'shared' tooltip is enabled (tooltip: {shared: true}) keyboard navigation through chart triggers JavaScript error and tooltip on focus is not shown, neither shared nor regular tooltip. It works without issues when 'shared' is disabled, but when it is enabled errors are triggered.

Steps to reproduce

  1. Open Dojo example https://dojo.telerik.com/@oleksii.shumakov@thomsonreuters.com/UqixUyuj
  2. Open browser's console (F12)
  3. Run the script
  4. With mouse click on "India" legend item once -> India line is disabled
  5. Click on "India" legend item once more -> India line is enabled
  6. Using keyboard hit Shift+Tab -> Browser's console shows error: "Uncaught TypeError: Cannot read properties of undefined (reading 'format')"
  7. Using keyboard hit Tab -> Dot on chart line becomes highlighted but no tooltip is shown

Stack trace of the issue:

kendo.all.js:290271 Uncaught TypeError: Cannot read properties of undefined (reading 'format')
    at init.show (kendo.all.js:290271:1)
    at init._displayTooltip (kendo.all.js:302830:1)
    at init._focusFirstPoint (kendo.all.js:302653:1)
    at init._navigatePoints (kendo.all.js:302577:1)
    at init._keydown (kendo.all.js:302540:1)
show @ kendo.all.js:290271
_displayTooltip @ kendo.all.js:302830
_focusFirstPoint @ kendo.all.js:302653
_navigatePoints @ kendo.all.js:302577
_keydown @ kendo.all.js:302540

Versions of KendoUI with the issue: 2024.2.514, 2024.3.806

Planned
Last Updated: 07 Oct 2024 07:26 by ADMIN
Scheduled for 2024 Q4 (Nov)
Created by: oleg
Comments: 0
Category: DateRangePicker
Type: Bug Report
1

Bug report

When clearing the contents of part of a Kendo UI DateRangePicker with a clear button, the change event does not trigger.

Reproduction of the problem

  1. Go to this Progress Kendo UI Dojo.
  2. Add dates to start and end inputs - Change event fires as shown in console.
  3. Clear them with the clearbutton - Change event does not fire.

Expected/desired behavior

The Change event should fire when clear button is pressed.

Workaround

Subscribing to a mousedown event on the clear button, and manually triggering the change event. It will require a setTimeout due to timing purposes:

      //Mousedown event on clear button
      $("span.k-clear-value").on("mousedown", function(e){

        //set timeout for timing purposes
        setTimeout(function(){

          //reference DateRangerPicker and trigger Change event
          var dateRange = $("#daterangepicker").data("kendoDateRangePicker");
          dateRange.trigger("change");
        }, 200);
      });

Environment

Planned
Last Updated: 02 Oct 2024 12:42 by ADMIN
Scheduled for 2024 Q4 (Nov)
Created by: Adam
Comments: 1
Category: PDFViewer
Type: Feature Request
17

Currently, when the PDFViewer is used with the latest pdf.js version 4.0.379 an error is thrown in the browser console. (Uncaught (in promise) Error: No "textContentSource" parameter specified.)

You can test the behavior in the Dojo linked here - https://dojo.telerik.com/@NeliKondova/eBUYEDAb. Run the example and wait for the pdf file to be loaded, then check the browser console. 

The latest Kendo version is compatible with pdf.js version 3.11.174. However, I would like the Kendo UI for jQuery to be compatible with pdf.js 4.x to avoid such misbehaviors. 

Planned
Last Updated: 19 Jul 2024 15:21 by ADMIN
Scheduled for 2024 Q3 (Aug)

Bug report

If you toggle the formatting marks in an Inline Editor, the marks are toggled for every Editor on the page. Additionally, if the content is scrollable, the marks remain stationary when you scroll through the content.

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/@martin.tabakov@progress.com/AFiTuKif/2
  2. Open the top inline Editor
  3. Toggle the formatting marks
  4. Scroll the Top Inline Editor

Current behavior

The formatting marks are toggled for each Editor on the page, and the arrow formatting mark remains stationary if you scroll through the content.

Expected/desired behavior

The formatting marks should be toggled for the target Editor only, and the formatting mark shouldn't scroll.

Environment

  • Kendo UI version: 2024.2.519
  • Browser: [all]
Planned
Last Updated: 08 May 2024 06:54 by ADMIN
Scheduled for 2024 Q2 (May)
Created by: Martin
Comments: 1
Category: DropDownTree
Type: Feature Request
3

In cases when we have loadOnDemand set to true and we want to populate the value of the DropDownTree initially we need a way to check if this value is part of the available options. One possible solution is adding a valueMapper function similar to the one use in virtualization scenarios.

Planned
Last Updated: 03 Apr 2024 13:20 by ADMIN
Scheduled for 2024 Q2 (May)

Bug report

When the selectable option is set to "multiple cell" and the user tries to select the content of a single column, the content of the entire row is selected.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/@NeliK/AzirANuT
  2. Try to select the text in the France cell and drag down to select only the content in the ShipCountry column.

Current behavior

The content of the other columns is selected as well - https://somup.com/cZeXIvpRzk

Expected/desired behavior

The behavior is expected when the allowPaste option is enabled. However, once the allowPaste option is disabled only the content of the selected column should be selected.

Workaround

kendo.ui.Selectable.fn._allowPreventDefault = () => true;
Dojo - https://dojo.telerik.com/@NeliK/eTocoBOL

Environment

  • Kendo UI version: 2024.1.130
  • jQuery version: x.y
  • Browser: [all ]