In Development
Last Updated: 30 Apr 2024 15:10 by ADMIN
Scheduled for 2024 Q2 (May)

Bug report

ColorPicker's value option is not taken with higher specificity.

Reproduction of the problem

  1. Open the following dojo.
  2. Set the value option of the widget.
  3. Notice that the color is not changed despite having the configuration set.

Current behavior

Currently, the ColorPicker requires setting the value={color} attribute to the input element. However, value option does not alter the input's value despite being set.

This behavior is inconsistent with other picker widgets where the value option is taken more predominantly:

https://dojo.telerik.com/@alexander64836/UNeMajeG/3

Expected/desired behavior

The ColorPicker should take the value option with higher specificity. Even in scenarios where the value={color} attribute is present on the input.

Environment

  • Kendo UI version: 2024.1.319
  • Browser: [all]
Unplanned
Last Updated: 30 Apr 2024 14:52 by ADMIN
Created by: Michael D
Comments: 5
Category: ColorPicker
Type: Bug Report
0
The Kendo UI ColorPicker's contrastTool shows the contrast ratios necessary to reach a certain accessibility level. While the current contrast ratio itself is localized, the thresholds for the AA and AAA levels are not. For languages like German, this means that for the ratio, "," is used as a decimal separator while the thresholds below use ".".
Completed
Last Updated: 30 Apr 2024 14:11 by ADMIN
The Kendo UI Toolbar widget's overflow menu can be opened/closed using the overflow button (by default on the right hand side of the toolbar). However, when the overflow menu is opened and a user clicks the button, the menu closes and immediately reopens again. It can only be closed by clicking somewhere outside of the menu. This DOJO demonstrates this behavior.
Unplanned
Last Updated: 30 Apr 2024 13:20 by Sara

Bug report

Regression Bug.

The new double tap editing mode not entered in Chrome and Edge on mobile devices since 2023.3.1010

Tested on iPad and iPhone

Reproduction of the problem
Dojo: https://dojo.telerik.com/AtaWufEG

Expected/desired behavior
User shall be able to enter editing mode on double tap

Environment
Kendo UI version: 2023.3.1010 or newer
Browser: [Chrome, Edge on Apple mobile device]

Completed
Last Updated: 30 Apr 2024 11:16 by ADMIN
Release 2024 Q1
In the latest version of Kendo, the DropdownTree control no longer shows the placeholder when there's nothing selected when you use checkboxes.

Here's a dojo showing that it does not work in the latest version: Kendo UI Snippet | Kendo UI Dojo (telerik.com)

I
f you revert to the last Kendo version, you'll see that the placeholder is working as expected. 
Completed
Last Updated: 30 Apr 2024 11:14 by ADMIN
Release 2024 Q2 (May)
Created by: Rami Abughazaleh
Comments: 3
Category: TreeList
Type: Feature Request
24
Hi.

I would like the ability to specify a template for the toolbar in a TreeList, much like the ability in the Grid.

Thank you.

Also see
https://www.telerik.com/forums/toolbar-template-59985d731e9b
Completed
Last Updated: 30 Apr 2024 07:40 by ADMIN
Release 2024 Q2 (May)

Bug report

When the culture is changed the NumericTextBox with decimals does not accept valid values when it is rendered inside an editable popup. The issue can be observed when the NumericTextBox is rendered for editing in other components such as Gantt and Grid.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/@gdenchev/UKAVAnaZ
  2. Try to edit a cell and decrease the number either by entering digits or by using the arrows.

Current behavior

A validation error that the value is not valid appears.
The same behavior occurs in the Gantt component if you try to edit a task, then select Resources and try to edit the Units value - https://dojo.telerik.com/@NeliK/uZepIbId

Expected/desired behavior

The value of the NumericTextBox should accept changes when the culture is set.

Environment

  • Kendo UI version: 2024.1.319
  • jQuery version: x.y
  • Browser: [all ]
Unplanned
Last Updated: 29 Apr 2024 14:21 by Andy
Created by: Andy
Comments: 0
Category: AutoComplete
Type: Feature Request
1

Hi Team,

I would like to request to include masking to the Input element of a Kendo UI AutoComplete.  This would help if a user needed to input a specific format into the autocomplete such as an email, ssn, or phone number but the data did not include special characters during filtering. 

Thank you!  

Need More Info
Last Updated: 29 Apr 2024 14:03 by ADMIN
Created by: Michael D
Comments: 9
Category: Kendo UI for jQuery
Type: Bug Report
0

In the latest version of Kendo UI, various input controls like the NumericTextBox or the ColorPicker now consist of an input field and a button control (used for increasing/decreasing the value or opening the dropdown).

The border-radius for those widgets can be controlled by setting the "rounded" option. At the same time, when using SASS themes, a button's default border-radius might be set using the $kendo-button-border-radius variable. The buttons inside e.g. a NumericTextBox do not override the theme's border-radius which leads to an outcome like this:

Widgets that use Buttons internally (and therefore offer no way of overriding the button's border-radius by setting its "rounded" option manually) should override the default styles.

Unfortunately, I could not reproduce the behavior in a DOJO, because I cannot transpile SASS themes there.

Completed
Last Updated: 29 Apr 2024 09:40 by ADMIN

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.

Unplanned
Last Updated: 29 Apr 2024 06:50 by William

Currently, when interacting with the "More Events" button:

The widget navigates to the "Day View" by default - if it happens to be present. It would be beneficial if there is a configuration that allows explicitly dictating the navigation behavior.

Declined
Last Updated: 26 Apr 2024 16:57 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>

Unplanned
Last Updated: 26 Apr 2024 15:32 by Brian
Created by: Brian
Comments: 0
Category: ExpansionPanel
Type: Bug Report
1

Bug report

When a Kendo UI ExpansionPanel is nested within another, and the initial expanded configuration is set to false, the panel will not open the first time it is attempted. When the widget is initialized, it searches for all expand icons in the expander's wrapping element, which in this case would include the icons of the inner expanders. Thus, when a user clicks on an outer one, you also affect the inner ones.

Reproduction of the problem

  1. Go to this Progress Kendo UI Dojo.
  2. Expand the main panel.
  3. Expand a child panel.

Current behavior

The Kendo UI ExpansionPanels do not open the first time clicked.

Expected/desired behavior

The inner expansionPanels should open as expected.

Environment

Unplanned
Last Updated: 26 Apr 2024 08:57 by ADMIN

The Notification is not entirely displayed when Default or Classic themes are selected and scroller appears on the page.

To reproduce
Steps to reproduce the behavior:

  1. Open the demos - https://demos.telerik.com/kendo-ui/notification/index
  2. Click on the 'As a popup at bottom-right' button.

Expected behavior
The Notification seems to be cut at the end.

Screenshots
image

With versions prior 6.4.0, the Notification was displayed with a slight distance on the right

image

Affected package (please remove the unneeded items)

  • theme-default
  • theme-classic

Affected suites (please remove the unneeded items)

  • Kendo UI for jQuery

Affected browsers (please remove the unneeded items)

  • All
Unplanned
Last Updated: 25 Apr 2024 20:59 by Jikku
Created by: Jikku
Comments: 0
Category: TileLayout
Type: Feature Request
1

Hi Team,

I would like to request a way to make it easier to change the state of the tiles(Adding and Removing) using outside components such as the Kendo UI CheckBoxGroup.  

Thanks!

Unplanned
Last Updated: 25 Apr 2024 16:24 by Jason

1. The top tab section (with the Home, Insert, Data, Undo, Redo) button of the toolbar should be configurable to be hidden, i.e. "single toolbar" configuration should be supported. Since it is possible to configure the toolbar to show custom items, it should also be possible to hide other tabs and the undo/redo button and only have a single toolbar as the configuration.

/* Style hack to hide the "Home/Insert/Data" tabstrip at the top of the spreadsheet. */
.k-spreadsheet-tabstrip.k-tabstrip {
    & > ul {
        display: none;
    }

    & .k-content {
        border-top: 0px;
    }
}

/**
 * Style hack to hide the undo/redo buttons in the quick-access toolbar.
 */
.k-tabstrip-wrapper .k-spreadsheet-quick-access-toolbar {
    display: none;
}

Need More Info
Last Updated: 25 Apr 2024 13:27 by Steve
Created by: Steve
Comments: 6
Category: Kendo UI for jQuery
Type: Feature Request
1

Email address lists - and other list inputs for text items - in various apps take text input and render each item in a tag - not unlike the MultiSelect.

A widget in similar form to the MultiSelect could serve this purpose, taking string input from the text input element - as well as being able to filter on active text.

I have rigged a MultiSelect with a view model to perform this function: dojo example. Its not perfect, but seems to work ok.

  • ";", "," and space characters are used as string separators to trigger parsing - and split text e.g. from pasted list
  • a simple email RegEx rejects values that cant be an address
  • email addresses are added to the "available item" list and selected item
  • the available items can be pre-populated according to the context
  • like in the MultiSelect, the pop-up list can be displayed and filtered as the user types
  • the pop-up list can be used to de-select and re-select items, as well as tag clear and "clear all" buttons in the widget
  • similar keyboard support is useful, "Ctrl-A", arrow keys etc.
  • multi and single tag modes

 

Unplanned
Last Updated: 25 Apr 2024 13:12 by Ross
Created by: Bradley
Comments: 1
Category: Form
Type: Feature Request
2
Add a Form method to reset the validation on the fields, similar to the Validator reset method.
Pending Review
Last Updated: 25 Apr 2024 12:13 by Lee
Created by: Lee
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
0
Please create a new widget or modify the existing dropdownlist component to allow the user to make more than one selection. The existing multiselect component is not sufficient in that it cannot be modified to look and operate like the dropdown list. This confuses users and makes the controls in a form feel like they came from two different libraries. The major difference is the placement and appearance of the search. In the dropdown list, the search is inside of the list and always 100% width. In the multiselect the search is invisible and inside the selected values box. Our clients are requesting a new tool where the search in the multiselect looks and operates like the search in the dropdownlist and have gone as far as to ask us to ditch Kendo UI for another library.
Completed
Last Updated: 25 Apr 2024 11:53 by ADMIN
Release 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