Declined
Last Updated: 21 Mar 2019 16:28 by Dimitris I.
Created by: Dimitris I.
Comments: 6
Category: Kendo UI for jQuery
Type: Bug Report
1

He have created this dojo to illustrate our point.

https://dojo.telerik.com/@navdeep316/iKAmeDAv

We would like to be able to be able to clone options from the top options and subsequently to be able to edit any cloned (child) option. 

We are unable to figure out a way so that the child/cloned dropdowns can change state.

Is it a bug or a feature? How can we achieve our aim?

Thank you so much,

Dimitris 

Unplanned
Last Updated: 15 Mar 2019 06:14 by ADMIN

Every time the user scrolls in a grid with virtual scrolling, the grid asks for the total number of rows satisfying the filtering conditions. This causes the same exact query to be sent to the database multiple times. Instead cache this value and only ask for it if the filters change. 

So with normal scrolling down the grid this will generate the following traffic to SQL:

Select Top 100, Skip 0 from Table where...

Select Count(*) from Table where (returns X number of rows)

Select Top 100, Skip 100 from Table  where... 

Select Count(*) from Table where (returns same X, exact same query)

Select Top 100, Skip 200 from Table  where...

Select Count(*) from Table where (returns same X)

and so on

To see this open a copy of the grid with virtual scrolling:

https://dojo.telerik.com/eDImUhOV 

Scroll the grid down:

In Developer Tools observer the result that is sent back to server includes the same:

__count"830"

every time. In terms this will often generate a Select Count(*) being sent to the server in order to supply the answer for the current filters of the grid. An example when a Select count(*) is generated can be seen in your MVC wrappers, for example, where the toDataSourceResult() will cause this same query to repeatedly be sent to the database with every request for new data (use SQL Server Profiler or similiar to see the unnecessary queries). This is also true for your demo implemenations of the server code when used with Kendo UI.  

For grids with large data sets, as is often used with virtual scrolling, this can be a slow query. 

Instead of asking for the number of rows every time the grid is scrolled, only do so at inatialization and when the filtering conditions are changed (for example use a variable or an event to keep track of the dataSources filters changing).

If the program cannot assume that the same number of rows will be returned, then please implement a setting for developers that we can use to say that the data is not changing.

We look at historical data that are constant and with more than 100k rows, the Select count(*) puts an annecessary strain on the servers.

We could implement caching for this value, but instead the grid should not repetedly ask for the same value multiple times, instead of only when the filters change.

 

 

Unplanned
Last Updated: 15 Mar 2019 06:19 by ADMIN

In a grid with virtualization, when just normally scrolling down requests for the exact same data are often sent multiple times after each other. The reason for this is probably that the grid sends an asynchronous request for example Top 100, Skip 200 and then does not keep track of that it is still waiting for a reply for this request, before asking for the same data a short period later. 

Commonly requests for the same data is made 2 or 3 or more times after each other, causing performance problem at the server side and in many cases unnecessary calls to the database. Fixing this should lower the number of requests for data to the server considerably, maybe with a factor two or more with just normal grid operation when the user is just scrolling down to view more data in the grid.  

To demonstrate the problem, open a copy of the virtualization grid demo, for example here:

https://dojo.telerik.com/iXijoyaY

Open the Developer Tools and just observe which network requests are sent to the server. Just scroll down in any way and observe that very often the exact same request is made. A request for the same data has the same Top and Skip values in the parameters sent the server. You can see the servers reply is exactly the same JSON data multiple times after each other.

Solving this performance problem almost completely would seemingly be to in a variable just keep track of the "Latest request" sent, since the problem happens mostly just with normal scrolling in one direction with request sent after each other. So one would need to keep track of that a call for Top 100, Skip 200 has been made, and if the program wants to request the exact same data again, just wait for a reply for the first request, instead of sending a new one. (If needed, send a new request only after a specific timeout for a reply for the first one).

A more thorough solution would be to have a data structure to keep track of the Top and Skip tuples for all the calls to the server that has not yet have had a reply from the server, and not repeat those exact same calls again if still waiting for a reply for the first request.

Unplanned
Last Updated: 14 Mar 2019 09:36 by ADMIN
Created by: n/a
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
0

Export to PDF shows the header commands like "Export to PDF", etc. These should be configurable to not be displayed.

 Similarly, using a .PdfExport event to hide and show the command columns is functional but should be included as a property to avoid the flashing that the hide/show does to a large element.

 

 

Completed
Last Updated: 02 Mar 2021 15:36 by ADMIN
Created by: Daniel
Comments: 1
Category: Kendo UI for jQuery
Type: Bug Report
0

In the latest Kendo UI commercial zip, there is a file typescript/kendo.all.d.ts.

In the Grid class, a property is missing : the dataItems function.

You should add the bold line :

 

        (...)
        dataItem(row: JQuery): kendo.data.ObservableObject;
        dataItems(): kendo.data.ObservableArray;
        destroy(): void;
        (...)

Unplanned
Last Updated: 07 Mar 2019 08:47 by ADMIN

When the DateInput uses a day-first format, e.g. dd/MM/yyyy, if you try to type in 29/02 the DateInput auto-corrects it to 01/02, which is not intuitive to the user and requires them to go back and fix the date again after typing in a leap year.

The DateInput should allow the user to type in 29/02 until the year portion is not provided.

Completed
Last Updated: 29 Mar 2019 07:05 by ADMIN
We want to copy & paste cell velue/text from kendo grid. But we are not able to select the cell text itself for copy. I think once we are able to select the cell text, we can copy than.
Unplanned
Last Updated: 06 Mar 2019 12:48 by ADMIN
This functionality will allow managing the visibility of the menu container, in case its container has overflow hidden.
Completed
Last Updated: 08 Mar 2019 15:21 by ADMIN
Created by: DDL
Comments: 0
Category: Kendo UI for jQuery
Type: Bug Report
2

When a ContextMenu is opened for the first time, the animation is not executed. Every consequent open trigger the animation successfully.

The issue can be observed in the following Dojo.

Steps to reproduce:

  • Open the ContextMenu and notice there is no animation.
  • Open the ContextMenu again and notice the default animation is triggered.

Unplanned
Last Updated: 05 Mar 2019 09:30 by ADMIN
Created by: Amarendar
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
0
Add the ability to add a custom parameter, with which the list of uploaded files in the Editor's ImageBrowser can be sorted.
Completed
Last Updated: 02 Apr 2019 13:20 by ADMIN

When showOn assumes its default value(to work with hold event on touch devices), the ContextMenu cannot be displayed by tapping and holding over the target elements.

The iсsue can be reproduced with the ContextMenu Demo.

Unplanned
Last Updated: 10 Jul 2019 06:41 by ADMIN

When a text with background color set is made bold and copy/pasted, the background color is not being preserved.

The issue can be reproduced on the following Dojo example.

Steps to reproduce:

  • Type some text.
  • Select the text and set a background color.
  • Make the text bold.
  • Copy/paste the text on a new line.

Unplanned
Last Updated: 01 Mar 2019 10:40 by ADMIN
Created by: Sreejith
Comments: 5
Category: Kendo UI for jQuery
Type: Feature Request
1

Hi,

We are using the progress functionality across the applications, also its inbuilt in Grids/Tree View or most of the Kendo controls when data is loading. Now we are hit with an Accessibility issue as stated below in JAWS 2019.

"Issue: There is a loading screen that appears throughout the application. Sighted users are able to see the loading indicator, however, screen reader users should also be aware of the loading screen."


this is what we use explicitly in some places other than the inbuilt loading indicator.

// show loading indicator
        kendo.ui.progress($("#divCriteria"), true);

 

So is there any settings available that we can make this screen readable when the progress bar appears? meaning if we setup globally once place it takes care across everywhere? Including Grids / Treeview etc.

I read setting this role=” aria-busy=” will do the job, but this functionality already have the kendo scripts?

<div role="alert" aria-busy="alert"> Data is loading... </div>

 

Appreciate a quick response or solution for this...

 

Thanks

Sree

Completed
Last Updated: 22 Jan 2020 08:21 by ADMIN
Created by: Burak
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
0
for example;
filter: { field: "fieldname", operator: "in", value: [value_1,value_2,...,value_n] }
Declined
Last Updated: 01 Mar 2019 11:49 by ADMIN
Created by: Radhika
Comments: 1
Category: Kendo UI for jQuery
Type: Bug Report
0

Hi,

I am facing an issue with Kendo grid ,i.e. Having more than one filter present in a grid and then deleting any one filter entry and clicking FILTER (or just pressing ENTER on keyboard) clears ALL filters.

In my Kendo grid , when I apply a filter to 2 columns, first I apply filter to numeric column which results in no value and, after that I applies the filter to a string column combined with numeric column which also results to no value, Nothing is displayed. But when I remove the value from textbox of numeric column and enter filter, no data is being displayed as string column filter is there but in case I remove the value from textbox of string column and enter filter , numeric column filter also gets removed. I also checked the Kendo functionality , but didn't find any solution for this problem.

 

Here's the code for Kendo Grid Filter which is causing the above issue.

 

 

 

    $scope.DemoGrid = {
        columns: [
            { field: 'ID', title: "ID", template: "<span><a href='' class='link-default' ng-click='getDetails(\"#=ID#\")'>#=ID#</a></span>" }, 
            { field: 'Type', filterable: false, title: "Type" },
            { field: 'Name', title: "Name", template: "<span>#=Name# </span>" },
            {
                field: 'Date', title: "Date", type: "date", format: "{0:dd-MMM-yyyy}", parseFormats: ["dd/MM/yyyy"],
                filterable: {
                    ui: function (element) {
                        element.kendoDatePicker({
                            format: "dd-MMM-yyyy",
                            parseFormats: ["dd/MM/yyyy"]
                        });
                    }
                }
            }
            ,
            { field: '', title: 'Action', template: "<span><a href=\'" + DemoDownloadApi + "?id=#=DownloadId#\' role='button' class='btn btn-blue-primary'>Download</a></a></span>" },
            { field: "DownloadId", hidden: true, sortable: false },
        ],

        pageable: {
            buttonCount: 5,
            pageSizes: [10, 20, 50, 100, 'All'],
            input: true,
            //refresh: false,
            messages: {
                display: Msg1,
                empty: Msg2
            }
        },
        sortable: true,
        dataSource: DemoDataSource,
        autoBind: false,
        filterable: true,
        scrollable: false,
        resizable: true,

    };

Unplanned
Last Updated: 19 Feb 2019 06:31 by ADMIN
Created by: Helen
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
0

Provide an option that allows encrypting each chunk of data that is being sent by the Upload.

Unplanned
Last Updated: 18 Feb 2019 13:07 by Anders Mad.
Created by: Anders Mad.
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
0

It would be useful if the option element attributes can be used in the MultiSelect's templates. For example:

`<select ... ><option data-color="#f00" value="red">Red Stuff</option>`

I want to use the `data-color` attribute from the option element in the MultiSelect's template.

Duplicated
Last Updated: 23 Dec 2021 08:32 by ADMIN
Created by: Roger
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
2

Pasting a cell value into multiple selected cells results in only the first cell in the range getting the value.

Steps to reproduce:
1) Go to https://demos.telerik.com/kendo-ui/spreadsheet/index
2) Click on cell B3 (Calzone) and press CTRL-C
3) Click on cell B4, hold the shift key and arrow down until cells B4-B7 are highlighted (or select the B4-B7 range with the mouse)
4) press CTRL-V

The outcome is only cell B4 receives the value of "Calzone".

Expected/desired behavior

All cells B4-B7 should have the value "Calzone".

Completed
Last Updated: 22 Apr 2020 11:34 by Tarun
Created by: Anant
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
Right now, responsive pager functionality cannot be disabled.
Unplanned
Last Updated: 12 Feb 2019 15:30 by ADMIN

Example: https://dojo.telerik.com/uqajAsas

Check the "foo" node. The change event fires for every checked node. It would be better if it fires a single time after all nodes have been checked.