http://www.kendoui.com/forums/ui/grid/pager-controls-should-be-hidden-when-total-results-is-less-than-the-pagesize.aspx
The grid has a number of built in filters, what is not supported is searching for cells that have no value or some value (i.e. NULL or NOT NULL). This would be a very useful addition.
When a user groups by a foreignkey column, it should show and sort by the value that's displayed in that column, NOT the underlying id value. I do have a workaround, but it seems like this is something that should be handled "out of the box".
Current filter control for a date column only shows a date picker, if the data that's bound to the column also contains the time part then the filters don't work properly. Adding a date time picker would solve the problem.
My Kendo grid has long column titles but the column width must remain static so we need a way to make a wrapable column header
I realize the grid's batch save is asynch, but most every project I work on has a need to know when grid saving is complete. Right now you can know when each of the CRUD operations is complete, but not when ALL are complete. Please either add an event for when ALL are completed, or give us the option to have the grid send ALL CRUD operations to the server at one time.
Introduce an expression builder for specifying filtering the grid by custom rules. Similar to the RadGrid for Silverlight: http://demos.telerik.com/silverlight/#ExpressionEditor/FilteringGridView
Basically, when a boolean is placed in a grid, it displays true/false. It would be better to show it either checked/unchecked. There is a template to be used, but it has a couple of issues: 1. you need to define it for every check box 2. It is either enabled or disabled. Ideally, it should be disabled in display mode, and enabled in edit mode.
We want events for expand/collapse groups in Grid, similar to the existing events for details. This events will helps us for personalize some funcionalitys. Thanks.
in grid when data are grouped and the group is collapsed groupFooterTemplate data should be still visible
Please consider adding the following basic grid grouping features into future updates: - default group collapse/expand config: .CollapseGroups(true) - auto hide grouped columns config: .HideGroupColumns(true)
Very often in grids we want command buttons disabled (or not even visible) depending upon model data, such as Delete not being available if the data has certain values set. Something like: columns.Command(commands => { commands.Edit(); commands.Destroy().VisibleIf(model => model.IsPosted) }); Using HtmlAttributes would be acceptable if it was easy to access the model. I'm currently achieving this by using a client template and rendering the buttons myself, but this seems overly complex for what is a simple occurance.
We are needing the virtual scrolling to work for our project and also need the detail rows working. The explaination of the problem was described on the forums here: http://www.kendoui.com/forums/ui/grid/hidden-detail-row-when-using-detail-template-and-virtual-scrolling.aspx
When I bind a change event to the grid it will fire each time I click on the row, even if it is the same row. So the selected row is not actually changing, but the event keeps firing anyways. The same thing happens if I programmatically select the row using the select method. I would rather the change event only fire when when the selection has actually changed rather than on every re-selection. Otherwise, you might as well call the event "onSelect" rather than "change". For extra points, it would be cool if the event received a reference to the previous row that was selected.
Similar to http://demos.telerik.com/aspnet-ajax/grid/examples/dataediting/alleditablecolumns/defaultcs.aspx or http://demos.devexpress.com/ASPxGridViewDemos/GridEditing/EditForm.aspx
It would be nice if its possible to slide threw the pages in a grid by using a slider in the footer.
Currently we use batch editing in the Grid control. The idea of batch editing is all changes are retained client side until the user presses the save button. When editing a cell a red dirty indicator is placed on the cell. This gives the user an indication that there are unsaved changes. however, when deleting a row, the row just goes away. There is no indication the user must still save. I would like to see rather than the record immediately removed a class applied to the row so we can apply some style like a strikethrough or red background color to indicate a pending delete. Also, we would be able to switch the "delete" button to an "undo" button.
Add the ability to display the Show/Hide Column menu by right clicking the Column Header instead of going through the "Column Menu". It would also be nice if you could access the Filter directly instead of going through the "Column Menu" The current Column Menu unnecessarily hides functionality in a menu that should be more easily accessible.
Hi, We use your kendo grid and it's great. Our users use a lot of filtering, sorting, etc.. One capability which is lacking is a way to compare columns. Now you filter a column based on a value (is greater than 5). It would be great if users could enter a value or another column. The user should be able to select that column from the list. This list should contain all column titles. This would be a great addition.
The loading indicator is not showing when the height property of a grid is not set.