Unplanned
Last Updated: 15 Feb 2024 15:58 by ADMIN
Created by: Lee
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
0

As per the instructions by the responder in this article: https://www.telerik.com/forums/how-to-add-a-class-in-the-tooltip-

I would like to have the ability to add a custom class to a tooltip's container when creating a tooltip. This class should be applied before any animation effects take place. Perhaps it could be a configuration like "containerClass": "myCustomClass". This is necessary because we use different types of tooltips on the site and cannot have one global look for tooltips. 

Unplanned
Last Updated: 15 Feb 2024 10:44 by ADMIN
Created by: Peter
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2

In the Editor please can you add a line spacing (line height) option.

 

Unplanned
Last Updated: 09 Feb 2024 09:58 by Christian

In a very special case it is impossible to select a value from the ComboBox. It only occurs on iPads.

if ComboBox filter is set, virtualization is on and the datasource is set programmatically after initialization. A data item cannot be selected from the list if it is filtered before hand and the item is located at the second page inside the popup.

Steps to reproduce:

  1. Open https://dojo.telerik.com/UbuRecut/4 on an iPad
  2. Wait till data source is set
  3. Input filter value (Popup should open and be scrollable)
  4. scroll to the end of the popup
  5. click element at the end of the list
  6. No item is selected

Used Dojo Snippet:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8"/>
    <title>Kendo UI Snippet</title>

    <link rel="stylesheet" href="https://kendo.cdn.telerik.com/themes/7.2.0/default/default-ocean-blue.css"/>

    <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
    <script src="https://kendo.cdn.telerik.com/2024.1.130/js/kendo.all.min.js"></script>
</head>
<body>
  
<input id="orders" style="width: 400px" />
<script>
  
    $(document).ready(function() {
        const ctrl = $("#orders").kendoComboBox({
            template: '<span class="order-id">#= OrderID #</span> #= ShipName #, #= ShipCountry #',
            dataTextField: "ShipName",
            dataValueField: "OrderID",
          filter: 'startswith',
            virtual: {
                itemHeight: 26,
                valueMapper: function(options) {
                    $.ajax({
                        url: "https://demos.telerik.com/kendo-ui/service/Orders/ValueMapper",
                        type: "GET",
                        dataType: "jsonp",
                        data: convertValues(options.value),
                        success: function (data) {
                            //the **data** is either index or array of indices.
                            //Example:
                            // 10258 -> 10 (index in the Orders collection)
                            // [10258, 10261] -> [10, 14] (indices in the Orders collection)

                            options.success(data);
                        }
                    })
                }
            },
            height: 520,
        }).data('kendoComboBox');
      
  $.ajax({
          url: "https://demos.telerik.com/kendo-ui/service/Northwind.svc/Orders",
          type: "GET",
          dataType: "json",
          success: function (data) {
            ctrl.setDataSource(data.d)
          }
        })
    });
  
  

    function convertValues(value) {
        var data = {};

        value = $.isArray(value) ? value : [value];

        for (var idx = 0; idx < value.length; idx++) {
            data["values[" + idx + "]"] = value[idx];
        }

        return data;
    }
</script>
</body>
</html>
Unplanned
Last Updated: 31 Jan 2024 14:06 by ADMIN
Created by: Ari
Comments: 0
Category: Kendo UI for jQuery
Type: Bug Report
0

Bug report

The kendo.culture.nb-NO.min.js file contains some unwanted characters: "Â".

Reproduction of the problem

See Ticket ID: 1486493 for more details.

The unminified file looks correctly: https://github.com/telerik/kendo-ui-core/blob/master/src/cultures/kendo.culture.nb-NO.js

Current behavior

Expected/desired behavior

Environment

  • Kendo UI version: 2020.3.915
  • jQuery version: x.y
  • Browser: [all]
Unplanned
Last Updated: 22 Jan 2024 08:22 by ADMIN

It would be nice to customize the ActionSheet title for adaptive DatePicker or TimePicker. Currently it is hardcoded.

A title entry in the messages object would be nice.

Unplanned
Last Updated: 11 Jan 2024 11:53 by ADMIN
Created by: james
Comments: 10
Category: Kendo UI for jQuery
Type: Feature Request
1

Hi  

We want to customize disable the subtotal at table.

For example table :

P1 \p12: 100

P1 :100 -->disable subtotal

p2:100

 

James

 

 

Unplanned
Last Updated: 01 Nov 2023 07:09 by ADMIN
Created by: Don
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
4
Currently you can turn on/off reorderable and resizable for all columns in a grid but you cannot make this setting on an individual column. For example, it would be nice to be able to make the entire grid resizable but then prevent a specific column from being resized.
Unplanned
Last Updated: 24 Oct 2023 11:58 by ADMIN
The date column displays full dates within settings. The dates cannot be formatted. Also, the sorting does not sort dates in chronological order. 
Unplanned
Last Updated: 18 Oct 2023 06:22 by ADMIN
Created by: Jonas
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1

Good morning,

currently the compatible JQuery versions are only listed in this article: https://docs.telerik.com/kendo-ui/intro/supporting/jquery-support.

Most of the time also with great delay (as of today: 3 versions behind)

Would it be possible to include the compatible versions directly into the Release Notes of new versions?

This way we can safely upgrade JQuery along with new Kendo UI Releases.

Unplanned
Last Updated: 27 Sep 2023 16:47 by Victor
Created by: Josh
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
9
Currently the media player only supports YouTube and local media files. In think it would benefit from supporting other media providers such as Vimeo and Metacafe.
Unplanned
Last Updated: 19 Sep 2023 08:49 by ADMIN
Created by: Joshua
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2

We would love to see the ability to modify/add/remove Custom Advance Properties to Excel Spreadsheets.



Unplanned
Last Updated: 16 Aug 2023 13:07 by Ruby Jean
Created by: DVS InteleStream
Comments: 5
Category: Kendo UI for jQuery
Type: Feature Request
24
Would like some way to know when the file is finished saving.

This is especially useful when saveAs uses a proxyURL and a user is waiting for the file to come back from the server.  Currently, there is no way to inform user of this progress or when it completes.
Unplanned
Last Updated: 15 Aug 2023 13:28 by Soumini
Created by: Soumini
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1

Hi Team,

I would like to request samples are created for Kendo UI for jQuery using TypeScript as it would be nice to see the implementation in action.  If possible, please could you include a section using ASP.NET Core as well.

Thank you!

Unplanned
Last Updated: 04 Aug 2023 06:44 by ADMIN

I would like the composite control "Change Theme:" that is used in the Kendo and ASP.NET Core Control demos to be delivered as part of the tool suites.

It is a control that I would like to leverage in several of my deliverables for my customers.  And, although I can duplicate the basic feature, it does not look near as nice as the one found on the demo pages.

See attachment for screen shots of what I am talking about.

It is already built.  Can it be packaged for delivery with the toolset(s)?

Thank you for the consideration!!!

Unplanned
Last Updated: 21 Jul 2023 10:16 by ADMIN
Created by: Tobias
Comments: 1
Category: Kendo UI for jQuery
Type: Bug Report
0

Hi,

This is only i minor issue, since the actual method seems to be working fine. I just thought i would bring to you attention that the demo page for the JQery method getOptions is havinf issues.

https://docs.telerik.com/kendo-ui/api/javascript/ui/grid/methods/getoptions

Steps to reproduce:

  1. Navigate to the link
  2. click on the preview tab of the example

Below are some of the more noteworthy errors and warnings:

  • jquery.js?020081004:3     GET https://docs.telerik.com/kendo-api/announcements/kendo-ui 404
  • VM359 kendo.all.min.js:9 License activation failed for @progress/kendo-ui v2023.2.606
    No license found.
    See https://docs.telerik.com/kendo-ui/intro/installation/using-license-code for more information.
Unplanned
Last Updated: 14 Jul 2023 08:35 by ADMIN
Created by: Aleah
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1

I would like to request an option to be added to the kendo taskboard that would enable multiple selection of consecutive cards. Then if one of the selected cards is dragged, the entire selection is also dragged and moved, maintaining their current order. 

 

Unplanned
Last Updated: 19 Jun 2023 08:25 by ADMIN
Created by: Brian
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
5

The Kendo tree doesn't show node lines which are essential for viewing data in complex trees.

There are some forums posts suggesting examples but these are not complete solutions and are buggy.  You can see my ticket #1612747 which raises some points about the issues in the solutions proposed in the KB.

Your desktop tree controls do offer node lines e.g. https://d585tldpucybw.cloudfront.net/sfimages/default-source/productsimages/wpf/productitemfeatures/treeview_hierarchical-display-and-other-bonuses_screenshot.jpg?sfvrsn=809d8c8b_3

This example shows the node lines working correctly without orphan lines that don't connect to anything.

Unplanned
Last Updated: 16 Jun 2023 10:00 by Brian
I think it could be useful to have a configuration option that enables/disables the TreeView's connection lines
Unplanned
Last Updated: 15 Jun 2023 07:39 by ADMIN

The following issue is only present in a Firefox browser:
Changing the value of a TimePicker input field through code can sometimes cause the entire browser to scroll to the top of the page.

Was tested in:
Firefox 114.0 (64bit) 
(User Agent: "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/114.0")

Reproduction: 

  1. Create an input and initialize it as a TimePicker. 
  2. Open the TimeView dropdown element either by clicking the button next to the input field, or by code (timePicker.open())
  3. Close the TimeView dropdown element either by clicking the button next to the input field again, or clicking away from it anywhere on the page, or by code (timePicker.close())
  4. Scroll down any amount from the top of the page.
  5. Use the timePicker.value(...) function to set the value of the TimePicker field. The selected value has to be equal to any of the options available in the TimeView dropdown element.
  6. The browser will scroll to the top of the page.

Test in Dojo: https://dojo.telerik.com/UdoLAkat/4

Expected behaviour: 
- After step 5. the value should just update in the TimePicker input field without causing any scrolling to happen.

I am assuming this behaviour happens because the TimeView component is attempting to scroll within its <ul> element to the option that has been selected by the .value(...) call, but since the entire TimeView component and all of its elements are hidden, Firefox somehow misinterprets the scrolling and scrolls the main viewport to the top of the page instead.

Unplanned
Last Updated: 13 Jun 2023 13:30 by ADMIN

This improvement is for Accessibility related on Dialog window.

When we create a dialog window using the below code snippet, Screen reader is not reading the Header content or Header level of the Dialog window when we press 'H' key. NVDA screen reader is unable to find any header tags in the Kendo dialog. Users of NVDA screen reader will find it difficult to understand the UI screen. So, I request Kendo UI team include this feature to be able to configure using code for improving this accessibility feature. Thanks.

Link to Kendo dojo : Kendo Sample dojo link

<div id="dialog"></div>
<script>
    $("#dialog").kendoDialog({
      title: "Kendo Dialog Component",
      content: "This is your Kendo Dialog.",
      actions: [{
          text: "OK",
          action: function(e){
              
              return false;
          },
          primary: true
      },{
          text: "Cancel"
      }]
    });
</script>