Declined
Last Updated: 26 Oct 2021 15:17 by ADMIN
Created by: John
Comments: 1
Category: Grid
Type: Feature Request
3
Expose a clean way of destroying kendoDraggable.

For instance at the moment I only want selected rows in a grid to be draggable, to when a row is selected I make it draggable, but then I need to clear all other draggables in the grid.  Can't find a clean way to do this.
Completed
Last Updated: 22 Oct 2021 12:46 by ADMIN
Created by: Imported User
Comments: 3
Category: Grid
Type: Feature Request
2
In lieu or as part of select-all capability:

Expose a way to retrieve the filtered set of data (or keys) in the grid and other filterable controls.

In other words, when a user has applied their own filters, there is currently no method to retrieve the filtered set across the entire dataset. That makes implementing a select-all button a bit tricky as you have to either select all on the current page (view) or the entire unfiltered dataset and then apply the filter yourself.
Declined
Last Updated: 22 Oct 2021 12:39 by ADMIN
With the kendoGrid, if no columns are specified, all columns are automatically rendered. However, dates (at least, I have not tested other non-strings) are rendered in non-human-readable form (at least if they are from SQL Server).

Since date rendering is tied to culture parameters, it would make sense to specify culture at the grid object level and have dates, currency, etc. render according to that. It would also be great to have filters setup for these different types applied to dynamic columns.
Declined
Last Updated: 22 Oct 2021 12:33 by ADMIN
The Kendo grid is slow to render row details when using Internet Explorer.   The reason, according to a forum post, is because IE does not handle the ":not()" selector well, which the Kendo uses.  Fix this problem.
Declined
Last Updated: 22 Oct 2021 12:26 by ADMIN
Created by: Marco
Comments: 0
Category: Grid
Type: Feature Request
2
It would be great to have a couple of CSS classes to do customization of the style of scrollbars in Kendo UI Web controls (multi-browser) because otherwise its really complicated to integrate javascript plugins to do this in the Kendo UI structure.
Declined
Last Updated: 22 Oct 2021 12:25 by ADMIN
Created by: Deej
Comments: 0
Category: Grid
Type: Feature Request
2
I want to be able to change whether a grid is scrollable, as its datasource grows or shrinks, without having to destroy and recreate it, and I want to control whether the columns are equal width or auto-sized, independently of whether it's scrollable. I also want to change its height, and turn on and off the option that lets it auto-size itself.

(Also I'm running into a similar issue with charts, where I can't change the tooltip template after it's set.)
Declined
Last Updated: 22 Oct 2021 12:20 by ADMIN
Created by: Andrei
Comments: 1
Category: Grid
Type: Feature Request
2
Can we please have a way to save and retrieve the raw html formatted as we'd like.

Currently it does not matter how you write the raw html, it will come back in an unusable blob of html
Declined
Last Updated: 22 Oct 2021 12:18 by ADMIN
When the user types a value in a grid column filter, clicks the filter button, then deletes the value from the column filter, and clicks the filter button, the grid results will not change to reflect the updated filter. When the filter text is removed, and the filter button is clicked, the grid results should be updated.
Declined
Last Updated: 22 Oct 2021 12:15 by ADMIN
By default Kendo Grid places a new created item/row at top of the grid in batch / incell edit mode. When saved the item remains top. The items count is increased in this case.
A click on Cancel puts the new item to the end of the grid and the items count is decreased.
There is just a work-around which stops the propagation of the cancel event when the datasource has no chances (thanks to Petur). 
That should be the standard behaviour.
Unplanned
Last Updated: 19 Oct 2021 07:15 by Mark
Created by: Don
Comments: 2
Category: Grid
Type: Feature Request
5

Hi Team,

I would like to request the functionality to sort the  MultiCheck Filter for the Kendo UI Grid. For example, maybe adding a columns.filterable.sort property. 

Thank you!

  
Unplanned
Last Updated: 18 Oct 2021 15:36 by ADMIN
Created by: Matthew
Comments: 0
Category: Grid
Type: Feature Request
1

Hi Team,

I would like to request to set the Grid's toolbar overflow to visible or a way to modify it's configuration within the API rather than it's current configuration to allow Kendo UI Menu items and other dropdown components from hiding behind the Grid body. 

For now, I'm using the following:

          .k-grid-toolbar {
            overflow:visible;
        }

Thank you!

Unplanned
Last Updated: 18 Oct 2021 11:52 by ADMIN
Created by: Alain
Comments: 0
Category: Grid
Type: Feature Request
3
Currently kendo UI web grid component does not read the DescriptionAttribute of a enum type. So, if a have a enum named Gender with values {F, M}, kendo grid will show those values instead "Female", "Male". Example

public enum FooType
{
    [System.ComponentModel.Description("Foo Description")]
    Foo = 0,
    [System.ComponentModel.Description("Bar Description")]
    Bar = 1
}

As the example above kendo grid should use "Foo Description" or "Bar Description" for showing those enum values. Same apply to generating dropdowns for the Filtering columns feature.

Thanks and sorry for my english.
Declined
Last Updated: 18 Oct 2021 07:08 by ADMIN
Created by: Mark de Torres
Comments: 1
Category: Grid
Type: Feature Request
1
Hi Guys,

It would be nice to have GridColumnAttachment field for Kendo ui grid like in Telerik RadControl
Unplanned
Last Updated: 12 Oct 2021 15:55 by ADMIN
Created by: Jason
Comments: 0
Category: Grid
Type: Feature Request
1

Hi Team,

I would like to ask for the functionality to access the worksheet tabs to be able to format/change the contents of them.  I understand the title can be set, but I would like to be able to change the background color.

Thank you!

Declined
Last Updated: 12 Oct 2021 08:05 by ADMIN
Created by: Andrii
Comments: 1
Category: Grid
Type: Bug Report
0

Create grid as groupable and try to set column title as "<span class='glyphicon glyphicon-cloud'></span>"


$("#grid").kendoGrid({
  groupable: true,
  columns: [{
    field: "name",
    title: "<span class='glyphicon glyphicon-cloud'></span>"
    //, groupable: false
  }, {
    field: "age",
    title: "Age"
  }]  
});

Expected result - column title as glyphicon glyphicon-cloud but actual is wrong

To fix the problem - set up column as groupable: false (just uncomment) and title will be ok

But if I want to use such title and groupable: true - I cannot

Full example:

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

    <link rel="stylesheet" href="https://kendo.cdn.telerik.com/2021.3.914/styles/kendo.default-v2.min.css"/>

    <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
    <script src="https://kendo.cdn.telerik.com/2021.3.914/js/kendo.all.min.js"></script>
  <!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">

</head>
<body>
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
  groupable: true,
  columns: [{
    field: "name",
    title: "<span class='glyphicon glyphicon-cloud'></span>"
    //, groupable: false
  }, {
    field: "age",
    title: "Age"
  }]  
});
</script>
</body>

 

and on dojo: https://dojo.telerik.com/EWUnarUf/2

  
Unplanned
Last Updated: 07 Oct 2021 13:00 by ADMIN
Created by: Stéphane
Comments: 0
Category: Grid
Type: Feature Request
1

Hi Team,

I'd like to request the functionality to include the input value within a Kendo UI Grid's search panel within the getOptions method.  This would allow for the search panel's input to be populated with the loaded state.  

Thank you!

Completed
Last Updated: 07 Oct 2021 10:33 by ADMIN
Release R3.2021.SP.next

The problem can be observed in the following Dojo:

https://dojo.telerik.com/UHAdoNIL 

The filter row appears on top of the Sticky Column.

Declined
Last Updated: 06 Oct 2021 14:51 by ADMIN

I'd like the ability to choose the behavior of mutli-row selection on a virtual grid with persisted selection.

 

For purpose of example, assume we have a virtual grid with 50 rows (pager controls not shown), a page size of 10, and persisted selection.

1. Select row 1 on page 1.

2. Scroll down to trigger page 2 to load (rows 11-20).

3. Select row 11, page 2.

4. Current Behavior: Both row 1 and row 11 remain selected.

5. Desired Behavior: Only row 11 remains selected.

 

Reasoning: I believe that a virtual scrolling grid should have selection behavior identical to a single page. That means that the only way to add rows to the selection is holding down control/shift during selection. In other words, on page 1 of the above example, if I select row 1, then row 2, only row 2 remains selected. If I select row 1, then Ctrl+click/Shift+click row 2, both remain selected. For virtual scrolling where multiple pages are displayed fluidly as if a single page, it seems odd to have the selection behave differently.

Unplanned
Last Updated: 05 Oct 2021 13:52 by ADMIN
Created by: Stéphane
Comments: 0
Category: Grid
Type: Feature Request
1

Hi Team,

I'd like to request the functionality to include event handlers and/or functions with the kendo.Stringify() method.  I understand event handlers are not included in JSON.stringify, but I would like to ask for future implementation from Kendo to be able to include them. 

Thank you!

Unplanned
Last Updated: 01 Oct 2021 14:19 by ADMIN
We are using the grid primarily to view paged sets of data, so in most cases we will see 10 to 25 records at one time.  Regardless of the number of records visible, the vertical scrollbar appears in a disabled state.  From my understanding, grid scrolling is either on or off, there is no Horizontal:On, Vertical:Off capability.  Our users often see multiple grids per page and the presence of these useless scrollbars creates visual clutter.  I am requesting the ability to independently set the visibility of the vertical and horizontal scrollbars on the grid in such a way that the grid's header and footer adjust to fill the empty space created where normally the scrollbar offset padding (17px) applied as an inline style in the _scrollable method of the grid javascript.  I envision this working via the kendoGrid settings object like so:

{
...
scrollable: { x: true, y:false }
...
}