Completed
Last Updated: 22 Jul 2021 12:36 by ADMIN
Created by: Vassilis
Comments: 1
Category: Grid
Type: Feature Request
1
We were interested in an option for aggregation rows on top of kendo grid groups. Now they are by default on the bottom of the group which some business users don't like.
Completed
Last Updated: 18 Dec 2019 16:04 by ADMIN
Release 2019.R3.SP1
Currently, if you use alwaysVisbile=false, the pager disappears on each grid rendering and it's very annoying for the end user. Another strange thing about this pager is the way the logic works behind. If the rows are equal to the page number of rows, currently you'll see the pager, but in fact you don't need it. 
Completed
Last Updated: 16 Dec 2021 11:47 by ADMIN
Completed
Last Updated: 21 Nov 2016 08:40 by ADMIN
Please check out a bug in the material design theme for grid pageing combobox in mobile device. 

You can check this bug at http://demos.telerik.com/kendo-ui/grid/remote-data-binding 

you have to adjust "mobile:true" option and then run by mobile simulator instead of web.

When you change the page with combobox. Grid's height will be reduced by combobox height.

This bug occured only in material design theme. (I didn't check all theme. I checked material, default, bootstrap, nova, fiori, office365)
Completed
Last Updated: 22 Jul 2021 19:20 by ADMIN
Created by: Surinder
Comments: 1
Category: Grid
Type: Feature Request
1
Dear Telerik,

I assume, there should be one button in kendoUI grid to scroll to bottom of grid and one button to scroll top of grid in just one click.

Similarly one button to scroll extreme right and one button to scroll  left of grid.

These buttons can be near, vertical scroll button and horizontal scroll buttons.

Regards
Surinder
Completed
Last Updated: 25 Nov 2021 11:42 by ADMIN
in a grid configured to groupable = false using a datasource that is grouped will allow selecting a grouping row, it does not show in the ui, but the select() method will return the grouping row. 

demo: 
http://dojo.telerik.com/aDevo

code: 
<!-- shows problem with select() in grid where dataSource is grouped and groupable is disabled -->
<!-- in the demo it is possible to select the grouping row which is not shown but select() returns the grouping row as selected, the problem is even worse if using multiselect with ctrl and clicking on the grouping row -->

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

    <link rel="stylesheet" href="http://kendo.cdn.telerik.com/2016.1.412/styles/kendo.common.min.css"/>
    <link rel="stylesheet" href="http://kendo.cdn.telerik.com/2016.1.412/styles/kendo.rtl.min.css"/>
    <link rel="stylesheet" href="http://kendo.cdn.telerik.com/2016.1.412/styles/kendo.silver.min.css"/>
    <link rel="stylesheet" href="http://kendo.cdn.telerik.com/2016.1.412/styles/kendo.mobile.all.min.css"/>

    <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
    <script src="http://kendo.cdn.telerik.com/2016.1.412/js/kendo.all.min.js"></script>
</head>
<body>
  
<div id="grid"></div> 
<script>

                                      
var dataSource = new kendo.data.DataSource({
  data: [
        { productName: "Tea", category: "Beverages" },
        { productName: "Coffee", category: "Beverages" },
        { productName: "Ham", category: "Food" },
        { productName: "Bread", category: "Food" }
  ],
  group: { field: "productName" }
});                                      
$("#grid").kendoGrid({
    selectable: "multiple, row",
    allowCopy: true,
  	groupable: false,  	
    columns: [
        { field: "productName" },
        { field: "category" }
    ],
  	change: function (e) {
      console.log("number of selected items: " + e.sender.select().length );
    },
    dataSource: dataSource,
});
</script>
</body>
</html>
Completed
Last Updated: 22 Jul 2021 10:55 by ADMIN
Created by: Imported User
Comments: 1
Category: Grid
Type: Feature Request
1
Kendo UI Grid should have a option to set confirmTemplate options to show custom confirm window. Now browser ugly built-in prompt is awful.
Completed
Last Updated: 28 Oct 2021 11:29 by ADMIN
Created by: Justin
Comments: 0
Category: Grid
Type: Feature Request
1
If Column widths are not set, The grid column and column header will be misaligned when autoscroll is enabled unless the following code is used which feels like a hack. This code snippet was given to me by a support team member.

    dataBound: function(e)
    {
      
        if($(".k-grid-content table").height() > $(".k-grid-content").height())
        {
          	$("#grid1 div.k-grid-header").css('padding-right',kendo.support.scrollbar());

            $("#grid1 div.k-grid-content").css('overflow-y', 'visible');  
        }
       	else
        {
            $("#grid1 div.k-grid-header").css('padding-right', '0');

            $("#grid1 div.k-grid-content").css('overflow-y', 'hidden');        
        }
    }
Completed
Last Updated: 02 Jun 2022 11:04 by ADMIN
Created by: Imported User
Comments: 2
Category: Grid
Type: Feature Request
1
Only two specific things that I've found lacking: 1) There doesn't appear to be any functionality for Kendo UI (jQuery) that allows for easily adding new values to a multi-select, which the Telerik RadComboBox appears to have. (E.g., for an email "to" field, selecting from existing contacts or adding a new address.) 2) The responsiveness (cell-phone-friendliness) of the Kendo UI Grid is extremely lacking, specifically if allowing for multiple rows selection. (Namely, trying to scroll down the grid instead selects the rows you swipe over, so you're unable to scroll down to see rows off screen.)
Completed
Last Updated: 04 Nov 2021 12:22 by ADMIN
Just like how Telerik Grids are done for Silverlight Grid. I would like to have both the multi check box filter and the regular filter w/ 'Contains/Starts with/ Ends with' message on the same filter 'popup'.

Is this possible with the current Kendo UI?
Completed
Last Updated: 20 Jul 2021 19:46 by ADMIN
Created by: Daniel
Comments: 1
Category: Grid
Type: Feature Request
1
Would be nice to have the checkbox selection and multiselect enabled to use the Multiselect for check the checkboxes.

https://demos.telerik.com/aspnet-mvc/grid/selection
Completed
Last Updated: 04 Nov 2021 12:24 by ADMIN
Right now there is no non-hacky way to modify the query executed when the user hits the 'refresh' button. You either have to remove a class from the refresh button so the standard code path is not executed, or you have to make your own refresh button. 
We would like a way to say "when the refresh action is called (via button click or otherwise), execute this function (or pass this data along with the standard execution).
Completed
Last Updated: 10 May 2022 12:23 by ADMIN
Created by: Wasim
Comments: 1
Category: Grid
Type: Feature Request
1
The grid does not have a auto generated Serial Number or Row number column built in. Although this functionality can be custom built, but I feel this is a basic thing and when you have to use the grid in different places in your program, then duplicating the same code for a simple functinoality sounds over killing and maintenance overhead.
Completed
Last Updated: 18 Mar 2022 09:42 by ADMIN
In the kendo grid, on setting the focus on the groupable button and pressing the enter key to change the sorting order, the focus moves to the start of the page. This is a accessibility concern for users who rely only on keyboard for navigation.


They need to begin 'TAB'ing from the start again after selecting an option on the grid groupable button.
Completed
Last Updated: 07 Apr 2020 08:01 by ADMIN
Having custom sorting on the grid is really handy. 
But with its current implementation, we are not capable of setting this sorting logic on load.

I opened a support ticket for this issue (see below), and now I'm considering extending this behaviour myself, if I can manage the time that is.

http://www.telerik.com/account/support-tickets/view-ticket.aspx?threadid=931220

However, it would be so much better if this was supported out of the box

http://dojo.telerik.com/IFoYA/2
Completed
Last Updated: 03 Mar 2020 12:24 by ADMIN
Created by: Imported User
Comments: 5
Category: Grid
Type: Feature Request
1
The pager drop down page selector is too large and obscures other controls and the bottom of the pager frame.

I hope this observation is useful.

I have a screenshot but there is no facility here to post it.
Completed
Last Updated: 03 Mar 2020 10:04 by ADMIN
Created by: Serkan
Comments: 3
Category: Grid
Type: Feature Request
1
Kendoui Grid filterin is excellent. But we can not use filter ui without grid. Kendoui has pager plugin so we can use pager plugin with datasource also without grid. But there is no filter plugin using filterin ui without grid. I put a screenshoot from another web app which show what i mean.
Completed
Last Updated: 18 Mar 2021 12:22 by ADMIN
When using a grid vith virtual scrolling it is currently not possible to get the current result that is viewed. I wanted to show the user approximatelly where he/she currently, i.e., I wanted to display in the GUI something like "Displaying rows 501-600 of 3211" when the pageSize is 100 and the total number of rows in the Grid is 3211. 

This would be helpful for orientation when using virtual scrolling with a high number of results. 

I have tried grid.dataSource.page() and this one is not currently possible to use. The results will be something like 100,200,300,400,500,600,500,700 sometimes going back a hundred and somtimes going forward 200 when using the scrollbar to scroll downwards.

Please check yourself by just creating a virtual scrolling grid with server side operations. Put the printout in the event handler for "DataBound". Page(), Skip() etc are not possible to use for the inconsistent behavior according to above. 

You help has not been able to find a solution or workaround for this and suggested I ask for this as new functionality.
Completed
Last Updated: 03 Mar 2020 11:57 by ADMIN
When we add Hide/show and filtering functionalities to my grid, the filtering button is no longer shown independently and is added to the column menu. We are no longer able to guess which column is filtered since the color indicator for filtering is not visible anymore.
Or make the column Menu colored when a filter is applied on the corresponding column
Completed
Last Updated: 09 Feb 2021 08:08 by ADMIN
Created by: Jyotika
Comments: 1
Category: Grid
Type: Bug Report
1

Hi Team,

Kendo grid does not allow all columns to be hidden from column menu as it disables the check box for last column in column menu.

But if we set hidden = true and menu = false properties for column, grid hides that column from grid and column menu, but enables the checkbox to hide all columns from grid leaving it empty. After which we can't get back the columns in grid which isn't valid.

Grid should always allow at least one column to be included in grid/menu.

Please find attached screenshot and below sample link.

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

Thanks,

Jyotika