Declined
Last Updated: 27 Jan 2022 11:50 by ADMIN
Created by: Christian Storb
Comments: 0
Category: Grid
Type: Feature Request
2
Add a new attribute columns.command.materialIconClass and render it e.g. as <i class="material-icons">contact_mail</i> 

Example: 

var grid = $("#grid").kendoGrid({
                        dataSource: {
                           pageSize: 20,
                           data: createRandomData(50)
                        },
                        pageable: true,
                        height: 550,
                        columns: [
                            { field: "FirstName", title: "First Name", width: "140px" },
                            { field: "LastName", title: "Last Name", width: "140px" },
                            { field: "Title" },
                            { command: { materialIconClass: "contact_mail", text: "View Details", click: showDetails }, title: " ", width: "180px" }]
                    }).data("kendoGrid");

Declined
Last Updated: 06 Jun 2022 07:53 by ADMIN
Created by: Emily
Comments: 1
Category: Grid
Type: Bug Report
2

Bug report

When applying GroupPaging with local data using a Kendo UI Grid with AngularJS, the error message Uncaught TypeError: Cannot read property 'hasSubgroups' of undefined' appears upon expanding a parent row.

Reproduction of the problem

  1. Go to this Progress Kendo UI Dojo.
  2. Attempt to expand the row.

Current behavior

Currently, the UID for the group is not matching the group row's UID, and the error message appears.

Environment

  • Kendo UI version: 2021.1.224
Declined
Last Updated: 27 Jan 2022 12:02 by ADMIN
Completed
Last Updated: 14 Sep 2020 08:10 by ADMIN
Release 2020.R3
Hello,

autoFitColumn not working for columns if they are locked and in multi-column header. Example is below. If I remove "locked: true" from first column, than it works good. Can you help me please?

 
<!DOCTYPE html>
<html>
<head>
    <style>html { font-size: 14px; font-family: Arial, Helvetica, sans-serif; }</style>
    <title></title>
 
     
     
     
 
</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,
                        resizable: true,
                        reorderable: true,
                        pageable: true,
                        columnMenu: true,
                        dataBound: function() {                         
                          this.autoFitColumn("CompanyName");
                          this.autoFitColumn("ContactTitle");                         
                        },
                        columns: [{                           
                            title: "Group",
                            width: 420,
                            locked: true,
                            columns: [{title: "CompanyName",width:60, field: "CompanyName"},
                                        {title:"ContactTitle", width:60, field: "ContactTitle"}]
                            },
                        {
                            title: "Contact Info",
                            columns: [{
                                field: "ContactTitle",
                                title: "Contact Title",
                                width: 200
                            },{
                                field: "ContactName",
                                title: "Contact Name",
                                width: 200
                            },{
                                title: "Location",
                                columns: [ {
                                    field: "Country",
                                    width: 200
                                },{
                                    field: "City",
                                    width: 200
                                }]
                            },{
                                field: "Phone",
                                title: "Phone"
                            }]
                        }]
                    });
                });
            </script>
        </div>
 
 
</body>
</html>
Unplanned
Last Updated: 26 Mar 2021 15:10 by ADMIN
Created by: Julianne
Comments: 0
Category: Grid
Type: Feature Request
2

Hi Team,

I would like to request the Kendo UI Grid to have a property for min-width for columns which are not resizable.  This way, when the screen reduces in size, the width will remain at a min width. 

Thank you!

Unplanned
Last Updated: 10 Oct 2019 04:37 by ADMIN

I'd like to request the functionality to change the multiple selection process of the Kendo UI Grid to be the same as Excel.  For example, the following shows a block of cells selected instead of all of the cells in-between the selected cells from Shift+Clicking:

Thank you!

Declined
Last Updated: 27 Jan 2022 12:09 by ADMIN
Created by: Prashant
Comments: 1
Category: Grid
Type: Feature Request
2
Drag fill multiple cells like excel. Kendo Spreadsheet control already has it. This is a crucial feature missing from versatile grid , IMO
Unplanned
Last Updated: 14 Mar 2024 11:26 by ADMIN
Created by: AGB
Comments: 5
Category: Grid
Type: Bug Report
2

Hiding the first column in Grid will show a 2 pixels left border instead one.

Dojo Sample to replicate the issue: https://dojo.telerik.com/ubaLiYEN

Steps:

1. Hide the first column (OrderID) from the Column Menu.

2. Notice the doubled left-border on the left hand side of the Grid.

Unplanned
Last Updated: 01 Oct 2020 12:46 by ADMIN
I would like to request the feature to allow auto-Scrolling in the Kendo UI Grid when selecting cells outside of the displayed view of records.  I would specifically like to see this feature for columns out of view from the right or left.  This would be similar to Excel's behavior.

Thank you!
Declined
Last Updated: 24 Jan 2020 09:30 by ADMIN
Created by: Bracken
Comments: 1
Category: Grid
Type: Feature Request
2

We need the ability to merge grid rows with the same values (see attached). This is a feature our customers have come accustom to with our Windows UI and the Developer Express toolkit. I understand I can manipulate the rowTemplate to achieve similar results but it is my understanding this will cause issues with row selection, editing, etc... Is this something that can be introduced in the future?

Regards,

Bracken

Unplanned
Last Updated: 26 May 2023 19:19 by Mark
Created by: Mark
Comments: 1
Category: Grid
Type: Feature Request
2

Hi Team, 

I would like to request a better way to be able to refresh the filters when the Kendo UI Grid refreshes.  I will elaborate more in an additional comment.

Thanks!

Unplanned
Last Updated: 27 Jan 2022 12:28 by ADMIN
Enable kendo grid to export excel with subscript/superscript and other options using Excel export API via configuration options. Right now it supports background, bold, color, fontName, fontSize, hAlign, italic, underline, and vAlign. Adding superscript/subscript would be great and it should not be difficult.
Declined
Last Updated: 22 Jul 2021 14:10 by ADMIN
Created by: Imported User
Comments: 1
Category: Grid
Type: Feature Request
2
I know there was a request was declined, but DOM double click can't pass data row,  it is a common feature to have.
Completed
Last Updated: 05 Aug 2020 08:29 by ADMIN
Release 2020.R1.SP1

Following example @ https://docs.telerik.com/kendo-ui/knowledge-base/grid-sort-displayed-columns-menu-items sorts a column menu. When hide column is then clicked, the wrong column is hidden.

This can be seen in your own dojo example linked in the above doc and @ https://dojo.telerik.com/UWuxOseV . Hiding column Ship Name hides Ship Address instead.

This seems to have been introduced in 2019 R2 SP1 version.

 

Unplanned
Last Updated: 18 May 2022 10:25 by ADMIN
In the spreadsheet there is a way to delay repainting til bulk editing is complete.  Grid does not have such a mechanism easily accessed, however with a  grid with a large number of rows, inserting multiple rows takes a long time as each row insert triggers the change event.  It can be worked around but would be better if it was supported like spreadsheet.
Duplicated
Last Updated: 03 Nov 2020 10:09 by ADMIN

Hi,

I updated my project to Kendo UI for jQuery 2020.3.1021 but then all Grids stopped working on mobile or tablet devices. When downgrading to 2020.3.930 grids works fine. Also tried it with 2020.3.1028 but same issue.

I have tested it on iPad, iPad Pro, Samsung S10. Same issue with Chrome/Edge Chromium and emulate a mobile/tablet device.

In the browser console you can see the javascript error: "Cannot read property 'rows' of null".

Reproduction of the problem:

  1. Go to https://demos.telerik.com/kendo-ui/grid/index
  2. Hit F12 top open the Developer toolbar
  3. Click on "Toogle device toolbar" (CTRL + SHIFT + M)
  4. Choose any device, ex: iPad, iPhone
  5. Reload page to make the changes take effect
  6. Click on "Run live demo"
  7. Grid not loading!!
  8. Console is showing a JavaScript error: "Cannot read property 'rows' of null"

 

Duplicated
Last Updated: 29 Sep 2021 09:29 by ADMIN

The Kendo Grid multi checkbox filter has the same sort order as the column it belongs to.  There is a example of how to correct that and provide a sort here:

https://docs.telerik.com/kendo-ui/knowledge-base/sort-multi-checkbox-filter

However that sorts the multiple checkbox filters correctly but it does not persist any existing checked items. If you have pre-existing items checked when this runs it will clear that and just return sorted checkboxes. In our case when we change refresh the datagrid datasource (using setDataSource) it will refresh the filter options while persisting the existing selected checkboxes. However if we want to do that and have the checkboxes sorted then we lose our existing selection.
Declined
Last Updated: 02 Nov 2020 13:46 by ADMIN

Hi,

I hope you all are doing well.

I have a grid (Asp.net core) with groupable: true. Users are able to do grouping by all the columns.

Requirement 1

Some of the groups are quite large, so users would like to be able to select the entire group (whether it is open or collapsed).

Requirement 2

I would also like to show the count of the items in the group header (for each group).

I tried to do it with "ClientGroupHeaderColumnTemplate" and adding a button in the template and associate JavaScript to the button to select and unselect the rows in entire group but it didn't work! I search in your forum and saw this example for kendo jQuery:
http://jsfiddle.net/xwfg3/1/

But I couldn't make it for ASP.net Core grid. This example is almost what I wanted except that in the example grouping is doing in kendo initial but In my case users are going to do grouping. It's not pre-defined.

Could you please guide me how can I make it for kendo grid in asp.net core? I really appreciate if you could make an example.

Requirement 3

The thing is that in my real project I am using serveroperation(true) in order to avoid rendering too much records. and I found that cause the problem.  I also do grouping, sorting, filtering in api side in my real project and return back a filtered, sorted and grouped object  to web.

Thanks.

Duplicated
Last Updated: 15 Oct 2020 11:24 by ADMIN
Created by: Sara
Comments: 3
Category: Grid
Type: Feature Request
2
Hello,

I am working on a project with Angular 8. 
I am using Kendo detailed template to represent the data.

It is very needed for my project to have this working with locked columns.

In your documentation I have read that this is not possible yet.

Would you please consider adding this feature?

If so, when do you plan adding it?
Declined
Last Updated: 13 Mar 2020 09:43 by ADMIN
Created by: Steve
Comments: 3
Category: Grid
Type: Feature Request
2
Hi,

     I posted an issue in forum thread.
http://www.telerik.com/forums/grouping-with-column-template-not-working

I'm stuck because grouping is not working on template column containing null values.  Is it possible to get a working solution?  It seems to be a simple null check not done in kendo framework...

Thank you for your help