Unplanned
Last Updated: 27 Jul 2021 08:28 by ADMIN
Created by: Fonyam
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
3
It would be nice if you could add a Legend to gauge control with multiple pointers, so it can be easier for users to determine which pointer stands for what. Something like the Legend control on RadHtlmChart, that allows for series to be toggled, except in this case it's the pointers that will need to be toggled.
Unplanned
Last Updated: 16 Dec 2021 12:20 by ADMIN
Created by: Danny
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
3
Kendo UI pivotgrid should have a way to customize the filters.  Specifically have a date picker for date fields and a date range.  But something so we can override what the default is.
Unplanned
Last Updated: 20 Jan 2022 11:48 by ADMIN
Created by: Yordan
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
3
Some ListBox widget ideas and proposals:

See screenshot: https://lh6.googleusercontent.com/TAVZGw63BSVVT6Nh8hXbiHerZ3L0krBzboONI07PpFByROeqKPiFgrlaPnTMtIUZ94D8xRog=w1920-h960

1. Add two search fields, so it is possible to search within the left and right panes individually.
2. Add headers above the search fields. They can be configured via templates. Also add options for selecting/deselecting all items in the corresponding pane. Checkbox’s middle state should also be considered.
3. Add option (API) for enabling/disabling ListBox widget as a whole widget (similar to DropDownList, ComboBox, etc.), not only item by item.
4. Add support for data virtualization (similar to DropDownList, ComboBox and AutoComplete).
5. Add API (public methods or fields) for retrieving the current status of the items in the ListBox. For example:
- a method/property which returns the count of currently selected items
- a method/property which returns the count of currently showed items (if searching, not all items will be visible)
- a method/property which returns the count of total items
This information can be shown in the headers via template, for example.
Unplanned
Last Updated: 15 Jul 2021 11:23 by ADMIN
Created by: Imported User
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
3
It'll be good to have such event for adding custom behavior to some of the child components.
Unplanned
Last Updated: 03 Feb 2022 11:41 by ADMIN
Created by: Lawrence
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
3
I've noticed that the Kendo notification widget is not response and does not wrap content as the browser shrinks.
Completed
Last Updated: 26 Jul 2021 07:12 by ADMIN
Created by: Federico
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
3
It would be nice to have an image extractor, which allows you to make screenshots and download images in png / jpeg. ("Export to PNG" something like 'export to pdf')
Completed
Last Updated: 20 Sep 2021 14:08 by ADMIN
Created by: Haris
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
3
Scenario:

 
- We have an custom DataTable that is bound to the datasource

- In this DataTable is a column, I do not want to display in the renders spreadsheet widget.

- It would be a useful feature to have before the widget is rendered?
Unplanned
Last Updated: 22 May 2020 09:05 by ADMIN
Created by: Patrick
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
3
I would like the additional barcode added.

https://en.wikipedia.org/wiki/Data_Matrix

A Data Matrix is a two-dimensional barcode consisting of black and white "cells" or modules arranged in either a square or rectangular pattern, also known as a matrix.
Declined
Last Updated: 18 Jun 2021 10:39 by ADMIN
Created by: Sam
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
3
Support Value template on ComboBox & MultiColumnComboBox
Completed
Last Updated: 05 Aug 2019 11:11 by ADMIN
Release 2019.R3
Created by: Eduard Töws
Comments: 2
Category: Kendo UI for jQuery
Type: Bug Report
3

Bug report

An error occurs on components' initialization when using a custom Kendo UI build which includes PDFviewer

Reproduction of the problem

  1. Go to Kendo UI Custom Download page
  2. In the "WEB" section select random components including the Grid and PDFviewer
  3. Download the custom build(kendo.custom.min.js file) and put it in the same folder with an HTML file with the following structure.
<!DOCTYPE html>
<html>

<head>
    <style>
        html {
            font-size: 14px;
            font-family: Arial, Helvetica, sans-serif;
        }
    </style>
    <title></title>
    <link rel="stylesheet" href="https://kendo.cdn.telerik.com/2019.2.514/styles/kendo.default-v2.min.css" />

    <script src="https://kendo.cdn.telerik.com/2019.2.514/js/jquery.min.js"></script>
    <script src="./kendo.custom.min.js"></script>
</head>

<body>
    <div id="example">
        <div id="grid"></div>
        <script>
            $(document).ready(function () {
                $("#grid").kendoGrid({
                    dataSource: {
                        type: "odata",
                        transport: {
                            read: "https://demos.telerik.com/kendo-ui/service/Northwind.svc/Customers"
                        },
                        pageSize: 20
                    },
                    height: 550,
                    groupable: true,
                    sortable: true,
                    pageable: {
                        refresh: true,
                        pageSizes: true,
                        buttonCount: 5
                    },
                    columns: [{
                        template: "<div class='customer-name'>#: ContactName #</div>",
                        field: "ContactName",
                        title: "Contact Name",
                        width: 240
                    }, {
                        field: "ContactTitle",
                        title: "Contact Title"
                    }, {
                        field: "CompanyName",
                        title: "Company Name"
                    }, {
                        field: "Country",
                        width: 150
                    }]
                });
            });
        </script>
    </div>
</body>
</html>
  1. The following error appears:
    Uncaught TypeError: Cannot read property 'Toolbar' of undefined

Current behavior

grid_pdf

Expected/desired behavior

A Grid should be initialized properly and without errors if a custom build is including the PDFviewer

Environment

  • Kendo UI version: 2019.2.514
  • jQuery version: x.y
  • Browser: [all]
Unplanned
Last Updated: 12 Aug 2019 13:12 by ADMIN
Created by: Igor
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
3

Hello.

When I tried your framework, I found a lot of positive and useful components, but unfortunately in our conditions I can not fully use the components with virtualization, because they can not work without counting the number of records. I have a lot of data and any scrolling, page selection, components such as combobox, dropdownlist, pager, grid, etc., every time i have to count the total number, and the queries are complex, not just select * from. Performance drops immediately, imagine i'm scrolling through a combobox, where there are 6 million records, where on every page Iihave to do select count(*) from table .. join...join... where .... and add to that another 100 users that all scroll the same combobox, for example.  It would be great to be able to simply load data page by page without counting the total, but remove invisible elements from the DOM if the number of pages loaded is greater than a certain number.

Some other commercial frameworks have similar things.

I would not like to look for other alternatives, because you have done a very good and high-quality work. Maybe there are workarounds to this problem?

I'm not just talking about the grid, such controls combobox, dropdown do not have the functionality of endless scrolling. I'd like to see something like

https://github.com/ElemeFE/vue-infinite-scroll

 

And you can find out when the interface should finish scrolling by an empty response from the server, when there is no more data.

Why not just scroll through the list, adding a portion of data without a total, if the next portion is empty, then finished.

You have even the library train sewn count number when calling ToDataSourceResult on IQueryable

https://github.com/kendo-labs/dlinq-helpers/blob/master/Kendo.DynamicLinq/QueryableExtensions.cs

Counting the number of rows on complex queries is a rather expensive operation.

I would very much like to see such functionality on your widgets

 

 

 PS: I have already talked on this topic with your developers 

Ticket details

Ticket ID
1422245
Type
Support


Completed
Last Updated: 08 Dec 2023 12:16 by ADMIN
Release R1.2024-Increment.2(31.Jan.2024)
Created by: Daewoong
Comments: 2
Category: Kendo UI for jQuery
Type: Bug Report
3

Describe the bug
Once the Tooltip is shown for a target with short title, if opened for a target with longer title, its width is not updated properly. The shortest width is persisted. Reproducible in all SASS themes, not reproducible in the LESS themes.

To reproduce
Steps to reproduce the behavior:

  1. Go to dojo.
  2. Hover "Korean"
  3. Hover "Korean short"
  4. Hover "Korean" again

Expected behavior
The Tooltip should resize properly to fit the title of the element it is shown for.

Screenshots

Affected package (please provide)

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

Affected suites (please provide)

  • Kendo UI for jQuery
  • Kendo UI for Vue

Affected browsers (please provide)

  • Firefox: [latest]
  • Chrome: [latest]
  • Edge version: [latest]
  • IE version: [11]

Build system information (please provide)

  • OS: [Windows]

Additional context
N/A

Unplanned
Last Updated: 28 Jul 2020 19:30 by ADMIN
Created by: Saurabh
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
3

Hi Team,

I'd like to request a component which would be a real-time clock/timer.  

Thank you!

Unplanned
Last Updated: 11 Jan 2021 12:54 by ADMIN

When unformatted multi-line content is pasted in an existing paragraph inside the Kendo Editor, the paragraph is removed and the pasted content is inserted in the body of the Editor.

Steps to reproduce:

  • Open: https://dojo.telerik.com/osANirag/8
  • Type in the content editable: "text row 1", hit ENTER, type "text row 2"
  • Copy the content from the content editable.
  • Paste the content in the first paragraph in the Kendo Editor

Result:

The pasted content replases the paragraph.

Expected Result:

The pasted content should be inserted in the paragraph.

Unplanned
Last Updated: 15 Apr 2021 13:56 by Brandon

Bug report

When the content that is being exported to PDF contains Material Design Icon the exported PDF is not valid.

Reproduction of the problem

  1. Open the Dojo
  2. Export the file
  3. Try to open it with Adobe Reader

Current behavior

Currently, when the file is about to be opened with Adobe Reader the following error appears - 'An error exists on the page. Acrobat may not display the page correctly. Please contact the person who created the PDF document to correct the problem.'.
Also if the file is tested in an online pdf validator it is not considered valid.

Expected/desired behavior

The exported file should be opened in Adobe Reader without any issues.

Environment

  • Kendo UI version: 2021.1.330
  • Browser: [all ]
Unplanned
Last Updated: 17 Jun 2022 09:43 by ADMIN
Created by: SWAT
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
3

Hi,

 

Currently, we can't control the print settings of the exported excel file. It will help if we can set things like "landscape","Fit t page" , etc. so that users will not have to repeat these changes for printing every time they export the KendoGrid.

 

Thanks.

Unplanned
Last Updated: 18 Oct 2022 15:14 by ADMIN
Created by: Cheng Mun
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
3

Hi Support team,

We would like to request for a new feature for "double underline" in the spreadsheet toolbar. This feature is available in the Excel and we would like to have the same feature in the spreadsheet toolbar as well. Thank you.

 

Completed
Last Updated: 27 Sep 2023 10:44 by ADMIN
Created by: David
Comments: 1
Category: Kendo UI for jQuery
Type: Bug Report
3

When an object is passed to an iframe method and kendo.observable is called on it, an error is thrown.  This error is new in the latest kendo releases and appears to be from a change to how kendo decides if something is an object.  Kendo now uses   { Object.getPrototypeOf(value) === Object.getPrototypeOf({})) } which it did not do in prior releases.  This test fails when the object tested is passed in from another frame.

You can repo this issue on the test site we setup:   Kendo UI Snippet (sixdisciplines.com)

Click the 'Call IFrame' button and notice the following error thrown:

    Uncaught TypeError: e.bind is not a function
    at init.wrap (kendo.all.js:318535:21)
    at kendo.all.js:318535:21
    at Array.forEach (<anonymous>)
    at new init (kendo.all.js:318535:21)
    at n.observable (kendo.all.js:318535:21)
    at iframeMethod (iframetest.html?5:14:25)
    at callIFrame (test.html:17:55)
    at HTMLButtonElement.onclick (test.html:21:34)

Following is the source used for this repo. I have also attached the html files.

Test.html:

      

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

    <link rel="stylesheet" href="https://kendo.cdn.telerik.com/themes/6.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/2023.1.314/js/kendo.all.min.js"></script>
</head>
<body>

<script>

  function callIFrame(){
debugger;

        var obj = new Object({ p1: 1, p2: 2, child: new Object({ c1: 1, c2: 2 }) });
document.getElementById('targetFrame').contentWindow.iframeMethod(obj);
  }

</script>
  <button onclick="callIFrame()">Call IFrame</button>

 <iframe id='targetFrame' src='iframetest.html?5'></iframe>
</body>   
</html>

iframetest.html

<html>
<head>
    <meta charset="utf-8"/>
    <link rel="stylesheet" href="https://kendo.cdn.telerik.com/themes/6.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/2023.1.314/js/kendo.all.min.js"></script>
</head>
<body>

<script>  
 function iframeMethod(obj){
debugger;
var observable = kendo.observable(obj);
alert('called')
 }
</script> 
IFrame with kendo 
</body>   
</html> 

  
Unplanned
Last Updated: 25 Apr 2024 11:17 by ADMIN
Created by: Lee
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
3

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: 23 Aug 2024 07:04 by ADMIN
Created by: Nasif Ishtiaque
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
3

Dear Kendo UI Team,

I am writing to request the implementation of a mention user feature for the Kendo UI TextArea component. This functionality would significantly enhance the user experience and collaboration capabilities of our .NET application.

Similar to popular social media platforms, the ability to mention users within a text area would allow for efficient communication, tagging, and collaboration among users. This feature could be implemented by enabling users to type an '@' symbol followed by a partial username, which would then trigger a dropdown list of matching user suggestions.

By incorporating this feature, Kendo UI would further solidify its position as a leading UI component library, providing developers with the tools to create more engaging and interactive applications.

Thank you for considering this feature request. We look forward to your response.

 

Sincerely,

Nasif Ishtiaque Islam

Software Engineer