Unplanned
Last Updated: 28 Mar 2024 13:14 by Tom

Bug report

The Editor doesn't allow multiple separators through the tools configuration.

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/eSESEheW/19

Current behavior

Only the first separator is rendered.

Expected/desired behavior

All the separators should be rendered

Environment

  • Kendo UI version: 2024.1.319
  • Browser: [all]
Unplanned
Last Updated: 26 Mar 2024 21:06 by Sarah
There is an option to freeze the left most column of the Kendo Grid by setting the lockable property.
But this is limited to the Left Hand Side columns only and there are no ways suggested to freeze the Right Most columns.
Pending Review
Last Updated: 26 Mar 2024 14:27 by Sarah
Created by: Sarah
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2

I would like be able to have a vertical scrollbar on a kendo grid without enabling horizontal scrolling.

Currently when the scrollable feature is set to true, scrolling is enabled for both horizontal and vertical.

I would like to see something like:

scrollable:{ vertical : true, horizontal: false }

Can that be done?

Thank you!

Unplanned
Last Updated: 26 Mar 2024 11:27 by Prakash
Created by: Prakash
Comments: 0
Category: Editor
Type: Bug Report
0

Bug report

Inline Editor does not close if you drag it to another position. Additionally, while dragging, occasionally the Editor will disappear, or it will have a padding from the cursor.

Regression introduced with 2023.2.606

Video - http://somup.com/cZeOQ5CYa8

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/OvumAcaH/7
  2. Open and drag the inline Editors to observe the behaviour.

Current behavior

The inline Editor remains open when it loses focus

Expected/desired behavior

Thе inline Editor should close when it loses focus

Environment

  • Kendo UI version: 2024.1.319
  • Browser: [all]
Unplanned
Last Updated: 26 Mar 2024 09:13 by Akesh Gupta

Currently, there is no way to reuse a single method of a model and execute different logic based on additional data related to the specific element. 

Before the CSP improvements in R1 2023, an unsupported workaround was configuring the method along with the arguments that were evaluated and accessible from the method itself.

Example of the unsupported approach: 

    <div id="test">
      <p  data-bind="text: spanLabel('test')" ></p>
      <p  data-bind="text: spanLabel('another test')"></p>
    </div>

    <script>
      var viewModel = kendo.observable({
        spanLabel: function(args){
          return "spanLabel executed, args: "+ args
        },
      });
      
      kendo.bind($("#test"), viewModel);
    </script>

 

Improvement suggestion

Allow the model methods to have access to the reference element. That would enable the internal method logic to get additional data based on the element and achieve the same functionality as the unsupported workaround approach. 

Example of the desired functionality:

    <div id="test">
      <p data-bind="text: spanLabel" data-span-label="test"></p>
      <p data-bind="text: spanLabel" data-span-label="another test"></p>
    </div>

    <script>
      var viewModel = kendo.observable({
        spanLabel: function(args) {
          let element = args.referenceElement; 
          let spanLabelArgs = element.attr("data-span-label")
          return "spanLabel executed, args: " + spanLabelArgs
        },
      });
      
      kendo.bind($("#test"), viewModel);
    </script>

Unplanned
Last Updated: 26 Mar 2024 07:15 by Anton
Created by: Anton
Comments: 0
Category: Scheduler
Type: Bug Report
0

Describe the bug
When there is an event that lasts multiple days, but is not an all-day event the title and the up arrow overlap, thus it makes the reading of the title harder.

To reproduce
Open the Dojo - https://dojo.telerik.com/@NeliK/IruYeGEc

Expected behavior
The arrow and the title should be rendered with some margin

Screenshots
image

Workaround

 .k-event-template{
      margin-top: 8px !important;
    }

Affected package (please remove the unneeded items)

  • theme-default
  • theme-bootstrap
  • theme-material
  • theme-tasks

Affected suites (please remove the unneeded items)

  • Kendo UI for jQuery
  • Kendo UI for Angular
  • Kendo UI for React
  • Kendo UI for Vue

Affected browsers (please remove the unneeded items)

  • All
Pending Review
Last Updated: 26 Mar 2024 07:00 by Peili
Created by: Peili
Comments: 0
Category: Kendo UI for jQuery
Type: Bug Report
0

Hi,

When I double click a cell and enter into editing mode, scrolling up or down will make the editor div out-of-place. 

It should follow the target cell instead.

This can be easily reproduced here: https://demos.telerik.com/kendo-ui/spreadsheet/index

It seems Kendo UI for Angular/React also have the same issue.

 

Unplanned
Last Updated: 25 Mar 2024 14:14 by ADMIN

Steps:

  1. https://dojo.telerik.com/URaJeSEk
  2. Click the "Change Price" button

Expected: kendoConsole logs the dataItem info in the top message
Actual: dataItem() doesn't find the model even though it exists in the Grid dataSource

In the Grid source code in the refresh function, _data is set to dataSource.view() if partialUpdate is true. For a grouped dataSource, view() will return the parents. This breaks the dataItem function since it relies on the flat array for retrieval.

It looks like this issue was introduced in version 2024.1.319 as it doesn't seem to affect 2024.1.130.

Unplanned
Last Updated: 25 Mar 2024 13:35 by Ranjini
Created by: Ranjini
Comments: 0
Category: Upload
Type: Feature Request
1
Expose the ability to set the ChunkSize in gigabytes. For example through a string.
Unplanned
Last Updated: 25 Mar 2024 11:36 by ADMIN
Created by: Jose
Comments: 2
Category: Spreadsheet
Type: Feature Request
17
Set an indicator same way that grid already does but now in sheet cells when a record is 'dirty'.
Planned
Last Updated: 25 Mar 2024 11:34 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.

Completed
Last Updated: 25 Mar 2024 11:33 by ADMIN
ADMIN
Created by: Stoich
Comments: 4
Category: Grid
Type: Feature Request
8
Currently you can clone the Pager to make it appear both on Top/Bottom. This should be configurable so that you can have in on top of the grid or the bottom of grid or both
Unplanned
Last Updated: 25 Mar 2024 11:29 by ADMIN
Please add the following things in Kendo UI
validators for compare, password length check, password complexity check, RangeValidator, ValidationSummary
Unplanned
Last Updated: 25 Mar 2024 11:27 by ADMIN
Created by: Sebastian
Comments: 2
Category: PivotGrid
Type: Feature Request
17
The PivotConfigurator is very static. It would be nice to change the layout.

For example some options:
- Hide / visibility of all four elements (Row, Column, Measure, Fieldlist)
- Position of all four elements (Row, Column, Measure, Fieldlist)
Unplanned
Last Updated: 25 Mar 2024 11:23 by ADMIN
Created by: Sitesh
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
4
Having a character counter for textbox & textareas gives users nice little heads up as they start typing to summarize the text for a fixed length. Not sure about internet applications but its becoming more & more a requirement in business applications. Please give it a thought.
Unplanned
Last Updated: 25 Mar 2024 11:22 by ADMIN
SVG Example:

            <svg>
                <defs>
                    <pattern id="Occupied"
                            width="4" height="10"
                            patternUnits="userSpaceOnUse"
                            patternTransform="rotate(45 50 50)">
                        <line stroke="#ffb29d" stroke-width="2" y2="10"/>
                    </pattern>
                </defs>
                <rect x="5" y="5"
                      width="40" height="100"
                      fill="url(#Occupied)"
                      stroke="#ff7094"
                      stroke-width="1" />
            </svg>

Unplanned
Last Updated: 25 Mar 2024 11:20 by ADMIN

Dojo: https://dojo.telerik.com/@jay/AhUYayEx

1. Hover over a color - tooltip shows up;

2. Hover over the tooltip;

3. Move the cursor back to the same target;

4. Move the cursor to a different color or any mouseout;

Actual: Tooltip is not closed

Expected: Tooltip to be closed (same as when not performing step 2)

Completed
Last Updated: 25 Mar 2024 10:24 by ADMIN

kendo.all.min.js is reporting this in Chrome.

A page or script is accessing at least one of navigator.userAgentnavigator.appVersion, and navigator.platform. In a future version of Chrome, the amount of information available in the User Agent string will be reduced.

To fix this issue, replace the usage of navigator.userAgentnavigator.appVersion, and navigator.platform with feature detection, progressive enhancement, or migrate to navigator.userAgentData.

Note that for performance reasons, only the first access to one of the properties is shown.

https://blog.chromium.org/2021/05/update-on-user-agent-string-reduction.html

 

When will this be resolved?

Unplanned
Last Updated: 25 Mar 2024 10:20 by Barbara

Bug report

If a Scheduler event's start time is set differently than :00 or :30, the event will be dropped in an incorrect slot when snap is enabled. The start time in the hint is also incorrect.

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/oSaQUCOp/13
  2. Drag the event to 2:00 AM and drop it. Notice that the start time in the hint is also incorrect when the event is over the 2:00 AM slot.
  3. Drop the event

Current behavior

The event will be placed at 2:19 AM instead of at 2:00 AM

Expected/desired behavior

The event should be placed at the dropped slot.

Environment

  • Kendo UI version: 2024.1.319
  • Browser: [all]
Completed
Last Updated: 25 Mar 2024 10:19 by ADMIN
Release R1.2023-Increment.1(09.Nov.2022)

Bug report

When you try to append a child item in the Menu, the parent item is replaced instead.

Regression introduced with 2022 R1

Reproduction of the problem

  1. Open this Dojo example.
  2. Click the Append 2 button
  3. Check Item 2

Current behavior

The new item replaces Sub Item 1

Expected/desired behavior

The new item should be appended as a child to Sub Item 1

Environment

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