Unplanned
Last Updated: 23 Apr 2024 06:15 by Michael D

I have noticed that, after switching themes, the tooltips in our application do no longer work correctly. I was able to reproduce the issue in the following two DOJOs:

The only difference between those two is the stylesheet to be loaded (line 6).

Steps to reproduce:

  1. load the DOJO
  2. hover over the red dot (notice how the text uses all space available and does not get wrapped unless necessary)
  3. hover over the green dot 
  4. hover over the red dot again

In step 4, the correct behavior would be displaying the tooltip in the same fashion as in step 2. However, in the faulty DOJO, it can be seen that the tooltip does not expand past the width of the text that is displayed when hovering over the green dot. This means that when displaying long tooltips after short ones, they are always wrapped unnecessarily.

A way to fix this behavior (and what's actually the difference between the two stylesheets) is to set the position on the ".k-animation-container" back to its default value "static". Usually, this value is overridden by the output of the size calculations, but during the calculations this value comes to play.

This third DOJO demonstrates the fix described above.

Please note that when using the default-ocean-blue stylesheet, the positioning of the callout seems to be broken as well.

Pending Review
Last Updated: 23 Apr 2024 05:51 by Michael D

Consider the following scenario: There is a sortable Kendo-UI grid with a corresponding dataSource. Initially, the dataSource contains some items. When updating the dataSource to an empty array, all items disappear from the grid - so far, so good. However, if a column header is clicked afterwards to sort that column, the removed data reappears again.

We created a small "walkthrough" in this DOJO to demonstrate the issue.

FYI: The issue can be avoided by using a custom implementation of dataSource.transport.read which always returns the latest data.

Pending Review
Last Updated: 22 Apr 2024 14:53 by Lee
Created by: Lee
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1

Our clients are requesting that the search in the multiselect look like the search in the dropdownlist. They want it to be in the list that opens rather than in the value box and want a consistent operation and look. This should be an option that can be set when initializing the multi-select. I attempted this using the forum post below but it is quite buggy and requires a lot of modifications. 

https://www.telerik.com/forums/make-filter-in-multiselect-look-like-filter-in-dropdownlist

Unplanned
Last Updated: 22 Apr 2024 08:15 by Frank
Created by: Frank
Comments: 0
Category: DropDownTree
Type: Bug Report
0

Bug report
DropDownTree as a row editor does not clear chips when x button is clicked. Select All option does not select items

this.dataSource.data()  does not have items

Regression with 2022.1.119

Reproduction of the problem
Open this Dojo example - https://dojo.telerik.com/oXizEQac

Open Name column row filter DropDownTree

Select All shall select all items. Clearing items shall clear them


Environment
Kendo UI version: 2022.1.119 or newer
Browser: [all]

Under Review
Last Updated: 19 Apr 2024 13:23 by ADMIN

Context: There is an item that illustrates the issue here: https://www.telerik.com/forums/kendo-datepicker-value-not-populated-after-refresh-firefox-only

In Firefox, when using the asp-for tag helper to bind a c# DateTime field to an input element, then calling kendoDatePicker() on that element, the control fails to populate on a soft-refresh (F5). Upon reloading using F5 in Firefox, the input's type is set to datetime-localand the input 's control variation is changed to the default date picker.  Then, the Kendo UI DatePicker is initialized with a blank input which normally has a type of text

Example project and video of issue are attached.

This is the pertinent code (also happens in latest version of Kendo as well):

    public class IndexViewModel
    {
        public DateTime DateAsDateTime { get; set; }
    }
        public IActionResult Index()
        {
            return View(new IndexViewModel { DateAsDateTime = DateTime.Today });
        }
@model IndexViewModel

<input id="dtDate" asp-for="@Model.DateAsDateTime">

<script type="text/javascript">
    $(document).ready(function () {
        $("#dtDate").kendoDatePicker();
    });
</script>

Declined
Last Updated: 18 Apr 2024 10:35 by ADMIN
Created by: Christian
Comments: 2
Category: Chat
Type: Bug Report
0

I have a chat widget configured like this:


let chat = $(target).kendoChat({
			messages: {
        placeholder: ResourceManager.GetInstance().getResource("SR_TYPE_A_MESSAGE")
      },
      user: user, 
      post: async (m: kendo.ui.ChatPostEvent) => await this.post(m),
    }).data("kendoChat");

 

If the post handler tries to await a call to a web  service (to do some translation/tag substitution) then the message is posted to the chat and the results of the web call are ignored.

Unplanned
Last Updated: 18 Apr 2024 09:05 by BOARD LAB

Bug report

If you have several Inline Editors and a Slider, switching focus from Slider and typing in the Editors result in an error in the console.

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/EhiKaJAw/2
  2. Change the Slider value
  3. Go to the Editor right below the slider and type some text - it appears that the focus is stolen here as the text cursor is not shown
  4. Go to the second Editor and type some text
  5. Repeat steps 2-4 several times

Current behavior

An error is thrown in the console

Expected/desired behavior

No error should be thrown on the console

Environment

  • Kendo UI version: 2024.1.319
  • Browser: [all]
Unplanned
Last Updated: 18 Apr 2024 06:40 by Christian
Created by: Winanjaya
Comments: 2
Category: Chat
Type: Feature Request
3
multiline message is a basic feature that Kendo Conversational UI should have..
Declined
Last Updated: 18 Apr 2024 06:28 by ADMIN

The current chat widget renders the user-input as an INPUT control, which means it cannot support multi-line support.

Wish for the option of rendering a TEXTAREA control instead of an INPUT for the chat widget:

 

Something like the following:
let chat = $(target).kendoChat({
  messages: {
        placeholder: ResourceManager.GetInstance().getResource("SR_TYPE_A_MESSAGE"),
        textarea: true
    },
      user: user, 
      post: async (m: kendo.ui.ChatPostEvent) => await this.post(m),
    }).data("kendoChat");

Unplanned
Last Updated: 17 Apr 2024 13:29 by Kevin

Bug report

When the loaderType is set to skeleton and the user edit the cells in the Grid, when saving the Grid is displayed empty.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/@NeliK/AGATEWAR
  2. Edit a record and click the 'Save changes' button.

Current behavior

The Grid does not display any data. The Grid is displayed as expected when the default loaderType is set.

Expected/desired behavior

The updated data should be displayed

The issue is a regression introduced with 2024.1.319 version

Workaround - https://dojo.telerik.com/@NeliK/OyIXIHuJ

sync: function(e){
           $("#grid").data('kendoGrid').refresh()
 },

Environment

  • Kendo UI version: 2024.1.319
  • Browser: [all ]
Unplanned
Last Updated: 17 Apr 2024 08:46 by ADMIN
Created by: sitefinitysteve
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1

The Kendo Spreadsheet is bound to a Kendo datasource, the datasource defines a schema, but when the JSON comes back the spreadsheet just ignores the schema properties and dumps the entire thing into the sheet.

It would be nice to not have to code up some additional workaround after already having defined the schema I want.

(No control over the JSON structure from the server)

Completed
Last Updated: 16 Apr 2024 08:30 by Martin
Release R1.2024-Increment.2(31.Jan.2024)

Bug report

In a Grid with popup editing, saving/cancelling the changes shows hidden columns for a short time.

Regression with v 2023.2.829

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/icarOBim/6
  2. Open the browser console
  3. Edit a field and press the save button

Current behavior

The hidden ID column is shown for a short time

Expected/desired behavior

The hidden column should remain hidden

Environment

  • Kendo UI version: 2023.3.1114
  • Browser: [all]
Completed
Last Updated: 16 Apr 2024 08:12 by ADMIN
Created by: Graeme
Comments: 0
Category: DateInput
Type: Bug Report
1

I have noticed some weird behaviour when using the SwiftKey keyboard on Android.

To recreate:

- Install SwiftKey keyboard and enable
- browse to https://demos.telerik.com/kendo-ui/dateinput/index in chrome for android 
- Select year component of date input control
- type 1 - year shows as 0001 - correct
- type 9 - year shows as 0019 - correct
- type 7 - year shows as 0009 - incorrect
- type 5 - year shows as 0019 - incorrect

All the other keyboard i have tried work as expected, i appreciate that this is a non standard keyboard on Android however it is a widely used one and works as expected when typing 1975 into any other app / control on the device.

Completed
Last Updated: 16 Apr 2024 07:36 by ADMIN
Created by: Jing Siang
Comments: 0
Category: Drawing API
Type: Bug Report
1

Bug report

The following configuration works only on Chrome (and Chromium based Edge):
https://dojo.telerik.com/AFuJAWoN/12

Reproduction of the problem

The result on IE 11 and FF:

image

Unplanned
Last Updated: 16 Apr 2024 06:54 by ADMIN
Created by: May
Comments: 3
Category: CheckBoxGroup
Type: Feature Request
21
Add DataSource binding for the CheckBoxGroup
Unplanned
Last Updated: 16 Apr 2024 04:35 by Fajleabbas
Created by: Fajleabbas
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
Currently, I am using the DateRangePicker. However, it would be beneficial if the From and To Date portions can be also filtered by a time criteria as well.
Unplanned
Last Updated: 15 Apr 2024 14:31 by John

Bug report

Modified date value from Excel is not correctly updated when pasting in the Spreadsheet.

Regression introduced with 2023 R1

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/AZateGoC/6
  2. Copy the Spreadsheet content
  3. Paste in to an Excel file
  4. Change the date cell value
  5. Copy and paste back in the Spreadsheet

Current behavior

The updated date cell is not pasted in the Spreadsheet

Expected/desired behavior

The updated cell's value should be pasted in the Spreadsheet

Environment

  • Kendo UI version: 2024.1.319
  • Browser: [all]
Unplanned
Last Updated: 15 Apr 2024 11:49 by Vakho
Created by: Vakho
Comments: 0
Category: ImageEditor
Type: Feature Request
0

I have an imageEditor component on my page, and am resizing the images to calculated width & height. I am using the ResizeImageEditorCommand command:

imageEditor.executeCommand({ command: "ResizeImageEditorCommand", options: { width: Math.round(newWidth), height: Math.round(newHeight), aspectRatio: true } });

After resizing, some of the images seem 'flaky'. The is not reproducible with every image but can be observed with PNG and JPG as well. I have provided sample images in ticket ID: 1647561.

I would like the images in the ImageEditor to have the same quality after resizing. 

Unplanned
Last Updated: 12 Apr 2024 06:48 by ADMIN

Bug report

When the background tool is displayed in the overflow menu of the toolbar and the user tries to change the background color or text color an error: e[this._property] is not a function is thrown.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/@NeliK/IHaRIvoy
  2. Select a cell and try to change its background color or text color

Current behavior

An error e[this._property] is not a function is thrown and the background color is not changed.

Expected/desired behavior

There should be no error in the console and the color should be changed accordingly.

The issue is a regression starting with 2023.1.117 version

Environment

  • Kendo UI version: 2024.1.319
  • jQuery version: x.y
  • Browser: [all | Chrome XX | Firefox XX | IE XX | Safari XX | Mobile Chrome XX | Android X.X Web Browser | iOS XX Safari | iOS XX UIWebView | iOS XX WKWebView ]
Planned
Last Updated: 11 Apr 2024 14:02 by ADMIN
Scheduled for 2024 Q2 (May)

Bug report

Grid throws error when partial update is executed and selection is persisted

Reproduction of the problem

  1. Open the following dojo.
  2. Select a row.
  3. Place it into edit mode.
  4. Make some changes and click on the Save command button.
  5. Try to select another row.

Current behavior

The Grid throws an error when the partial update is executed and the selection is persisted.

Expected/desired behavior

The Grid should not throw an error when the partial update is executed and the selection is persisted.

Environment

  • Kendo UI version: 2024.1.319
  • Browser: [all]
1 2 3 4 5 6