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


Unplanned
Last Updated: 09 Oct 2019 15:15 by ADMIN
Created by: Brian
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1

Hi Telerik Team,

Great PDF export feature! It's the best I've seen.  We would like support for exporting to PDF/A for archival.  Is this possible? 

Thanks,

Brian 

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

Declined
Last Updated: 25 Jun 2019 08:32 by ADMIN
Created by: n/a
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
0

I would like there to be a simple input field that allows a datasource to be attached. This would support update database operations to be sent as JSON to the desired URL, much like grid or gantt do.

Seems a bit of an oversite that you don't have this on, given the width and breadth of your other controls.

Completed
Last Updated: 20 Jul 2020 06:42 by ADMIN

1)I have configured drop-down(list) for the values in the cell of spread sheet.

2)Scroll bar is not coming in that drop down list.

3)Due to which if list is big ,it is going out of sheet.

4)Please see the screenshot attached to see the issue.

5)Kindly reply.

Completed
Last Updated: 19 Sep 2019 07:45 by ADMIN
Created by: aa
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
5

1. Please add zooming functionality to pdf viewer, so user can zoom in or zoom out

2. please allow us to hide toolbar buttons

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

 

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: 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)

Completed
Last Updated: 16 May 2019 07:20 by ADMIN

Dear Telerik,

Please check this example. The single difference than the original one from the demos section, is that I deleted the tasksDataSource.schema.model.fields.parentId.defaultValue". Now the default value of the parentId will be 0 instead of null. If you try to add a new task, the logic will break because of inifinity loop caused by the new task with id=0 and parent=the same task(parentId=0).

I checked the documentation at https://docs.telerik.com/kendo-ui/api/javascript/data/ganttdatasource/configuration/schema and this obligation is missing. It is something small that can save an hour to someone else. 

Best Regards, Boyan.

Completed
Last Updated: 26 Jan 2021 14:32 by ADMIN
Release 2021.R1.SP.next

If the delete rows button is used on a table that is followed by another table, and all the rows from the first one are deleted, the next table receives focus. Upon clicking the delete row button again, an error is being thrown "Cannot read property 'rows' of undefined".

The issue can be reproduced with the Basic Usage Demo::

  • create a table
  • create a table immediately following the first
  • focus the last row of the first table and click the 'Delete row' button until all rows are deleted.
  • Click the 'Delete row' button again.

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.

Completed
Last Updated: 06 Oct 2020 14:07 by ADMIN
Release 2019.R2.SP1
In cases when incell editing is enabled, grid is scrollable it is possible that a cell from the last row is not switched to edit mode as expected. Please refer to the attached source code and the steps below to replicate the issue. The problem can be observed only with a 2019.1.403 version of the Kendo scripts (an internal build). Please test the example with 2019.1.403 version of the scripts to replicate the issue. 
Declined
Last Updated: 02 Mar 2021 15:34 by ADMIN
Created by: Albert
Comments: 2
Category: Kendo UI for jQuery
Type: Bug Report
1

https://dojo.telerik.com/aPAcUDuc/2

 

open new window using the button, and close all window one by one, then see that k-overlay is still stay in page

Completed
Last Updated: 23 May 2019 05:50 by ADMIN

In the Wizard to create or update an MVC project, and possibly other wizards, please add support for choosing which cultures that you want to include. 

 

This could be done by adding checkboxes in a tree where you could at first level choose language and then expand and choose country/region, since the files follow the format:

<language code>-<country/region code>. 

Most people probably only use English and/or their native language, so please make this a choice in the wizard.

As an example. In one of the latest versions of the framework, the folders for cultures and messages contain 1786 files in total. Out of those we only need 2, the ones for our native language. 

Slowly installing and then manually deleting 1784 files in Visual Studio for every time you run the MVC wizards, is a complete waste of time for such a common scenario where you know whihc languages that the app should support. 

 

 

 

 

 

 

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()

)





Completed
Last Updated: 16 Apr 2019 09:55 by ADMIN
Created by: Reqs
Comments: 0
Category: Kendo UI for jQuery
Type: Bug Report
1

Video: https://www.youtube.com/watch?v=8pnFjgzdaJ8&feature=youtu.be

1. Navigate to: https://dojo.telerik.com/@milena/uZaGuZol (open the dojo sample in edit mode, but not in FullScreen)

2. Scroll Grid to the last item.

3. Open for editing ProductName cell.

4. Open for editing Discontinued cell.

Result: 'Discontinued' cell of the second item will be opened for editing.

Expected: 'Discontinued' cell of the last item should be opened for editing.