Please add grid spinner configuration on grid, example <kendo-grid [loading]="true"></kendo-grid>
The filter descriptors support accessor functions in the "field" option. It would be great to see this implemented in the sort, group, and aggregate options. const result = process(items, { filter: { logic: "and", filters: [{ field: x => x.getValue(), operator: "eq", value: 0 }], // <- supported }, group: [ field: x => x.getValue(), // <- not supported aggregates: [{ aggregate: "sum", field: x => x.getValue() }] // <- not supported ], sort: [{ field: x => x.getValue(), dir: "desc" }] // <- not supported });
I would like to know Do you have any plan to release context menu feature for kendo grid
Since the client side filtering honours ignoreCase and the toOdatastring not, we got a difference in behaviour, so i'd like to report this as a BUG! With dropdowns I use: &$filter=contains(tolower(FieldName), tolower('" + searchString + "')) but for grid filtering a COLUMN BASED ignoreCase is a MUST!
Allow user to filter like excel and your Keno UI for jquery. Where user can filter record by applying checkbox check and search.
Scroll position is lost when navigating between routes. A way to set scroll position on the grid would be nice for navigating to a previous route.
We recently had an ask to limit the number of columns that could be selected, and were not able to find an out of the box solution (nor was support).
Something like this would be great, which is the same implementation as the kendoGridFilterMenuTemplate which allows you to override just the content of the column chooser, and not have to manually create your own menu entry by overriding the whole kendoGridColumnMenuTemplate
<ng-template kendoGridColumnChooserMenuTemplate let-service="service">
<our-custom-chooser-component></our-custom-chooser-component>
</ng-template>
or, alternatively, if we were able to specify a grid parameter for a max number of columns as a grid level [maxColumns], that would work as well.
Hello,
As discussed with Martin in support ticket 1429284, some of the column values in my grid might be the same, but with different letter cases. For example, column "First Name" could have the values "Elias", "elias", and "ELIAS".
When grouping, Kendo grid grouping treats those values as 3 separate groups because its case sensitive. Our users expect those values to be grouped as 1 to avoid confusion.
The workaround provided might affect other dependent features and make the code a bit messy.
I would appreciate it if you could add in a future version, a built in option to ignore case when grouping without changing the original displayed values.
Regards,
Elias
Basically whats described in this issue right here: https://github.com/telerik/kendo-angular/issues/2093
It would be nice if column group visibility could be toggleable via the column chooser.
If not, a more elegant workaround would be to indicate in the column chooser that certain columns are part of column groups. The way it is now is too clunky and unclear.
For example, I have the following column groups:
But the above columns show up in the column chooser like so:
It would be nice if the column group name was at least prepended to child columns in the column chooser to at least indicate that it's part of a group. For example, it would show as follows instead:
[x] Latest read - Time
[x] Latest read - Value
[x] Latest write - Time
[x] Latest write - Value
Thanks so much.
We need to overwrite kendo-grid-column-chooser component reset button logic. We need reset button to select all columns that were selected during the initial load of grid.instead of current reset logic. Is there a way to overwrite reset button logic?
I tried <kendo-grid-column-chooser (reset)="resetColumnMenu($event)"></kendo-grid-column-chooser> but it didn't work.
Change the position of the grid filter dropdown, so it is unclear for which column it applies when opened. For example, as seen in the below screenshots, the popup of the filter to be displayed under the column to which it applies instead of on the right-hand side of it.
Actual behavior:
Desired behavior:
Related ticked: 1562369
Feature to add "Select All" option in the Column Chooser of the Grid.
Similar to the feature in jQuery Grid: Display SelectAll in the ColumnMenu for Showing and Hiding Columns | Kendo UI Grid for jQuery | Kendo UI for jQuery (telerik.com)
Presently, when I place a bootstrap drop-down inside a cell the drop down is cropped when open (it is hidden behind the rows below). Can you please endeavor to eradicate this issue within your components so that we don't have to jump through lots of "css hoops" or worse "write jquery to do it" in order to get the desired result. Your components should be fully compatible with bootstrap (since you have a BS theme and lets face it, its pretty well industry standard these days) Many of our "grids" require an Action column which in some cases has more buttons than we would like to put "side-by-side" and so the best option is to add a drop-down action button to hold the action commands. At present there is no equivalent Kendo component that will do this for us either. Your grid cells should really cater for this as other users may want a custom column with "drop down" content too.
hi guys, We are debating between ag-grid for Kendo ui angular 2....what better to use? 1. Does Kendo UI grid supports RTL (Right To Left)? 2.How to implement expandable row In ag grid angular 2 ? 3. How to implement paging In ag grid angular 2
The current behaviour for row selection is to toggle the selected state. This is not desirable in cases in which you require one item to always be selected (say, displaying a grid of financial planning scenarios in which one must be selected as the current scenario).
Currently the filterCellTemplate is ignored for commnand column. It would be a handy feature if one could specify also content of filter cell for command column so in case filtering is enabled we could for example provide some suctom additional functionaly/content in that column (for example i wanted to add there a button that would reset all filters)
The group panel on the grid should be configurable to be hidden
disable grouping on a column