Allow user to filter like excel and your Keno UI for jquery. Where user can filter record by applying checkbox check and search.
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!
It way too complicated to clear the selection programmatically in the grid at the moment. Please add a clearSelection method on the grid instance.
In the jQuery version of the Angular Grid, it was possible to add row templates to a grid which was useful because you could set attributes directly to the tr. In my case, I have a scenario where I want to add a title attribute for tooltips for the whole row, not just individual cells. I can provide a function for rowClasses, which is great, but it would be nice if there was a similar function I could use to add other attributes as well directly to the tr. At the moment my work around is to add the title to every column individually, but that's not ideal as it affects the positioning of the tooltip etc
Suggestion: Make the 'select all' checkbox in the grid more intuitive for the user. When we combine virtuall scrolling and selection via checkboxes for the kendo grid the 'select all' checkbox in the header will only select rows which are already visible / paged in. This is of course because kendo does not yet now about the not yet paged in rows. On the other side this behavior is quiet unintuive for the user. The user does not know about page border and expects the select all checkbox to check all rows. The desired functionality could be realized by internally differentiating between two selection modes, one where the selected rows are are accessible via api (normal mode) and one where the deselected rows are accessible via api (mode where select all is enabled). This would increase the user experience.
If the value "-1" is passed in as one of the values in pageSizes input for the PagerPageSizesComponent, that option should be shown as "All" and should show all rows available for the grid.
Implement "Shift + Arrow Keys adds the row which holds the focused cell to the selection (only for selection mode "multiple")", explained here (https://demos.telerik.com/kendo-ui/grid/keyboard-navigation)
It's possible to assign class/styles to column groups, column heads, and cells, but not to the filter cells.
Currently the grid uses indexes to memorize which data row is expanded. When a new row is inserted (due to a new data item inserted in the underlying collection) before a currently expanded details row, then then expanded details view will shift to the row before (old index). This is not desirable in a scenario with a lot of adding/removing of items. It would be great if memorizing expanded details row could be bound to the data object.
I would like to know Do you have any plan to release context menu feature for kendo grid
Once in a while, I try out a new Version to see, whether performance has improved. and constantly, I find that this is not the case. The best treeshaking technique from Angular is spoilt by KendoUI components because of all the millions of bytes of script code that get downloaded by your components and lead to a desastrous client experience! Optimization would be as simple as a good redesign. I wonder, why this still did not happen over the last year!
Specifies a date/time grouping option, which determines time periods to be used as grouping values in group for Date column value.. Ex : By Date => The time portion of the values is ignored. By Month, By Year Relative to today etc
When exporting the grid contents as a PDF file, we only have the option to export the current page or all pages. There should also be the option to export specific data, like there is for the Excel Export (https://www.telerik.com/kendo-angular-ui/components/grid/export/excel-export/#toc-exporting-specific-data).
It would be nice to have a builder for complex filter in the grid like that: https://js.devexpress.com/Demos/WidgetsGallery/Demo/DataGrid/FilterBuilder/Angular/Light/Compact/
Since column reordering is now avaialble, could you implement a way to set column index as an Input property, so it can be saved and loaded later?
Support TYPE in DataResult (speciallly GridDataResult) In state you would like to do something like: export interface SomethingState { loading: boolean; success: boolean; data: GridDataResult<XYZ> } it would be State with data: XYZ[].
Export to pdf...long strings..arrays to multiple page headers ..top can't be static..
Current Silverlight Solution has the ability to filter based upon the operators of "Is Contained In" and "Is Not Contained In". When will this be available for the Angular version. This is delaying a move from Silverlight to HTML5 and Angular 4, as our client is dependent upon the existing feature.
Drag and Drop of grid's columns the same way we have on the jquery version (with a Input on the component saying if we want columns to be draggable)
Need to have Parent --> Child hierarchical records to be displayed in Grid.. It should support up to 'n' level , it means a parent can have any number of child records. can this be done using current Master Detail grids?. Parent 1 --- Child 1 -- Grand Child 1 -- Grand Child 1 -- Grand Child 2 Thanks in advance.