As described here: https://github.com/telerik/kendo-angular/issues/731 The function toODataString not generate the string with the groupby and aggregate. In order to the groupby funtionality of Grid component to work with OData, this is needed. Sample (code) available at https://github.com/telerik/kendo-angular/issues/731
In a Kendo grid, Angular/MVC/JS/Whatever; When using multi check filter. ---- Only show those values that are still useful to filter on!!! --- When filtering is done(one to many columns) - ONLY the remaining options should be seen when setting the NEXT filter (not all possible values in the database) of course distinct and sorted (the grid could have an option of doing it this way or the old way) example: let's say we have 5 numbers of categories, each category have 20 different details. when filtering is set on one category, then when filtering on details - only the 20 remaining details should be seen, not 100(5*20) and vice verse, if filtering one detail - only one category should be seen when filtering on category.
Kendo Angular PDF is currently has good functionality to export/download as PDF. My Idea is that , if Kendo can extend its PDF export functionality with print also. Problem - Currently using kendo PDF download, the GRID or any HTML component looks good to the users. But the same Grid if the user want to print , then the developers has to use some third party scripts to generate the print object and do the print. still its not appears as good as it appears in PDF. so the end users are complaining why the PDF export and the print is different in look and feel. Here are the steps to overcome. 1. should have a print PDF functionality which opens the PDF into new window. 2. the user has the option to download or print the pdf using PDF in-built options. 3. Kendo to provide fix to open in new window for all browsers ( IE, chrome, firefox etc) 4. Kendo print should not send the request to underline printer or any other hardware device.
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.
I find myself reusing similar/identical code in order to implement filtering, sorting and virtual paging. In almost all cases, I am simply applying the filters, sort and determining the records to select based on the page as shown in the API. This code should be inbuilt into the kendo grid. If filterable is true, kendo should implement the filter change event and apply filters automatically; the users should not be forced to define what happens on filter change for every grid instance. Similarly, if sortable is true, the kendo grid should automatically implement default sort functionality. The same would also be useful for virutal scrolling. If scrollable is set to 'virtual', then the view to be shown in the grid should be automatically calculated on page change.
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?
I opened this question https://stackoverflow.com/questions/51331725/kendo-grid-for-angular-2-reactive-formarray Would be nice to make grid reactive more transparent, or make a complete example to use it.
We need to store column's show and hide state when apply from ColumnMenuChooser component.
Please add support to change order of filter/clear buttons in Grid Filter Menu Component (so instead of "Clear-Filter" button order we can use "Filter-Clear" button order).
I would like to know Do you have any plan to release context menu feature for kendo grid
It is difficult to move a column beyond the columns that are currently visible without using the horizontal scroll. So as column are listed in the drop down it would be good to be able to reorder here. Could also implement the auto scrolling of the horizantal scroll when moving column beyond the visible scroll. Both would be good.
Add the RowTemplate feature of JQuery Grid to Angular Grid. https://demos.telerik.com/kendo-ui/grid/rowtemplate In particular we are looking to be able to define 2 rows of data per row. The second has cells that span multiple columns so we are unable to achieve what we want with a Cell Template ( https://www.telerik.com/kendo-angular-ui/components/grid/columns/templates/ ).
Hi , I would like to vote for this .
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.
I am honestly quite surprised that this isn't possible... if anyone has a workaround to make this happen it would be much appreciated. All I want to do is make the grid headers go 'Vertically' and have each 'row' become a column.
Requested for Kendo UI originally, seems to be common scenario: http://www.telerik.com/forums/automatically-hide-a-column-when-a-user-drags-it-up-to-be-a-group-header
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).
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).
Whenever the column is resized in a way so only part of the headertext is shown, I would like a tooltip to appear. Earlier we did something like this with jQuery if(this.offsetWidth < this.scrollWidth && !$this.attr('title')){ $this.attr('title', $this.text()); } Should be possible to provide a tooltip-template (not just set title attribute)
Exporting grid and chart in single pdf. If we have grid and chart in seperate tab. With hidden content what if we have a pagination in grid and want complete grid and chart. https://stackblitz.com/edit/angular-8tdtwv-p6r75m?file=app/app.component.ts