Unplanned
Last Updated: 09 Jul 2019 08:20 by ADMIN
Created by: David
Comments: 1
Category: Kendo UI for jQuery
Type: Bug Report
0

Bug report

Reproduction of the problem

Dojo example.

Current behavior

A difference between kendo.culture.ar.min.js:

pattern: ["-n %","n %"],

and other Arabic cultures, e.g. kendo.culture.ar-AE.min.js:

pattern: ["-n%","n%"],

A space is present in between the % symbol and the number and the position of the percent symbol differs.

Expected/desired behavior

Format consistency.

Environment

  • Kendo UI version: 2019.2.619
  • jQuery version: x.y
  • Browser: [all]
Unplanned
Last Updated: 08 Jul 2019 17:52 by ADMIN

Bug report

Almost all formatting tools such as fontName, fontSize, backColor, foreColor, bold, italic, etc. do not change bullets in unnumbered lists and numbers in numbered lists. Please see the sample below:

  1. One (italic)
  2. Two (bold)
  3. Three (green)

 

Best regards,

Dmitry Kostochko

Unplanned
Last Updated: 27 May 2021 10:59 by ADMIN
Created by: Jack
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1

Kendo UI mobile widgets are really falling behind and now need an urgent refresh. Most mobile widgets have not been updated in 3 to 4 years (https://github.com/telerik/kendo-ui-core/tree/master/src).

The most urgent is for styles to be updated to match LESS and SASS styles. Currently, styles are a mess and making a mobile app including the grid and other recent responsive widgets with consistent styles takes a lot more time than it should:

- NOVA has many specificities not available in other themes

- OS skins have no match to style the grid and other web responsive widgets

- Material UI is not consistent and up-to-date

 

Unplanned
Last Updated: 13 May 2019 07:37 by ADMIN
Created by: Christopher
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
0

Does Kendo.Ooxml.Workbook have a setter for which sheet opens after the workbook is saved as an excel, similar to activeSheet in Kendo.spreadsheet?

(Note: using Kendo MVC ver 2017.3.913.545 - it's not on the list below)

Unplanned
Last Updated: 04 Sep 2020 13:33 by ADMIN
Created by: David
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
12
Implement a Timeline Year view for the Scheduler, which holds slots with duration one month.
Unplanned
Last Updated: 23 Apr 2019 06:46 by ADMIN
Created by: Vinay
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1

https://demos.telerik.com/aspnet-mvc/spreadsheet/server-side-import-export

Saving large data to xlsx takes longer time to complete.

Evaluate optimizing the value setting and the usage of CellSelection.

Unplanned
Last Updated: 04 Apr 2019 09:55 by ADMIN
The same applies for the MultiSelect and the ComboBox widgets. The current behavior could be observed in this Dojo example.
Unplanned
Last Updated: 04 Apr 2019 05:22 by ADMIN
Created by: pau
Comments: 0
Category: Kendo UI for jQuery
Type: Bug Report
0

Binding the map layers to a SignalR Core datasource does not work. A runable project can be found in Ticket ID: 1401776

The basic configuration is:


<script>

    var hub = new signalR.HubConnectionBuilder().withUrl("mapsHub", { transport: signalR.HttpTransportType.LongPolling }).build();
    var hubStart = hub.start();

    console.log(hubStart);

</script>

@(Html.Kendo().Map()
        .Name("map")
        .Center(2, 21)
        .Zoom(3)
        .Layers(layers =>
        {
            layers.Add()
                .Type(MapLayerType.Tile)
                .UrlTemplate("http://#= subdomain #.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png")
                .Subdomains("a", "b", "c");
            layers.Add()
                .Type(MapLayerType.Marker)
                .DataSource(dataSource => dataSource
                    .SignalR()
                    .AutoSync(true)
                    .Transport(tr => tr
                        .Promise(handler: "hubStart")
                        .Hub("hub")
                        .Client(c => c
                            .Read("senddata")
                            )
                        .Server(s => s
                            .Read("senddata")
                        )
                    )
                );

        })
        .Markers(markers =>
        {
        })
        .Events(events => events
            .MarkerClick("onMarkerClick").MarkerCreated("onMarkerActive"))
            .Deferred()

)





Unplanned
Last Updated: 29 Mar 2019 07:07 by ADMIN

Bug report

When the filtering mode of the grid is set to "row" and the filter is programmatically cleared, the "Clear filter" button does not hide.

Reproduction of the problem

Set filterable: {mode: "row"}.
Filter for instance "Is null" or "Is not null".
Clear the filter - $("#grid").getKendoGrid().dataSource.filter({});
The "Clear filter" button is not hidden
sample Dojo:

https://dojo.telerik.com/AVOqifeK

If there is text in the filter's input, the button is hidden.

Expected/desired behavior

Hide the "Clear filter" button, irrespectively whether the filter has been cleared programmatically or via the UI.

Environment

Kendo UI version: 2019.1.220
jQuery version: 1.12.4
Browser: [all]

Unplanned
Last Updated: 28 Mar 2019 15:08 by ADMIN
Created by: Aldermar
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
5

Hi,

FluentValidation is an excellent tool that keep us from using DataAnnotations' Validator's decorators to achieve the entity class keeps as is, a just POCO class. The pros of this lead us to those developers, like me, that focus its backend (entities) development in Database-First processes, to lose decorators applied to the entity or model view class in every change made to the Database rather than the entity class, FluentValidation give us a better control of the validation rules, separates the validation from the entity class or view model class, testing is easier than DataAnnotations and support client-side validations. As far as I know, FluentValidation injects Data Annotation under the covers.

It would be great if you consider to take advantage of the integration with this tool in your route map.

 

Thanks

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.

 

 

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.

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.
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.
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

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.