kendo grid dynamic does not contain a definition for MinResizableWidth throwing this error on resize column ..multiple dynamic gids in my mvc view minResizableWidth float The pixel screen width below which the user will not be able to resize the column via the UI. Bug: Column Resize Handle not showing on dynamic Grid Columns The problems are the hidden columns. If you have a hidden column in the grid, you can't resize all other columns after the hidden column. That is a very nasty bug, so please Kendo-UI team make a fix for it.
Currently when using MVVM to instanciate a grid which contains columns with values arrays, those values arrays must be globally scoped. All other things MVVM binds to are located within the View Model. Please make it so that the kendo.bind method will allow for an MVVM grid to locate it's columns value arrays within the View Model.
If you export your grid to Excel then you may have noticed that sometimes the columns are smaller than their content. What I mean is, I have double click the coumn header in Excel to get the desired "auto-width". It would be nice to have this functionality already in Telerik. So that the column width perfectly fits its content.
would be useful
I know there was a request was declined, but DOM double click can't pass data row, it is a common feature to have.
When a user zooms OUT on a browser(like Google Chrome) to 67% or 75%, sometimes the resize handles do not work. We added css on top to see why(made the resize handle more visible). The handle moves to the left the more the user zooms out. Seems to work fine up to 80% but starts to fail after that. Thanks
Add a new attribute columns.command.materialIconClass and render it e.g. as <i class="material-icons">contact_mail</i> Example: var grid = $("#grid").kendoGrid({ dataSource: { pageSize: 20, data: createRandomData(50) }, pageable: true, height: 550, columns: [ { field: "FirstName", title: "First Name", width: "140px" }, { field: "LastName", title: "Last Name", width: "140px" }, { field: "Title" }, { command: { materialIconClass: "contact_mail", text: "View Details", click: showDetails }, title: " ", width: "180px" }] }).data("kendoGrid");
Drag fill multiple cells like excel. Kendo Spreadsheet control already has it. This is a crucial feature missing from versatile grid , IMO
Enable kendo grid to export excel with subscript/superscript and other options using Excel export API via configuration options. Right now it supports background, bold, color, fontName, fontSize, hAlign, italic, underline, and vAlign. Adding superscript/subscript would be great and it should not be difficult.
In the spreadsheet there is a way to delay repainting til bulk editing is complete. Grid does not have such a mechanism easily accessed, however with a grid with a large number of rows, inserting multiple rows takes a long time as each row insert triggers the change event. It can be worked around but would be better if it was supported like spreadsheet.
The two grid tables are created for locked columns work. The .k-grid-content-locked element is used for columns which are locked, while the .k-grid-content element holds the scrollable content. Due to this behaviours functionalities like Tabbing become complex task to achieve.
Hi,
We are using Fusion software and the grid ARIA attributes of rows are "aria-describedby". This results in the invalid/wrong action tips for Fusion users. If we change it to "aria-labelledby" it works well.
Currently, we have to override the private method _tmpl so we can edit the hardcoded attribute. We need to be able to change this part of the source:
if
(navigatable) {
rowTemplate +=
" aria-describedby='"
+ column.headerAttributes.id +
"'"
;
}
It would be great if we can configure them from the grid settings.
$(
"#grid"
).kendoGrid({
ariaAttribute:
"aria-describedby"
});
if
(navigatable) {
rowTemplate += (that.ariaAttribute ? that.ariaAttribute +
"='"
:
" aria-describedby='"
) + column.headerAttributes.id +
"'"
;
}
Following example @ https://docs.telerik.com/kendo-ui/knowledge-base/grid-sort-displayed-columns-menu-items sorts a column menu. When hide column is then clicked, the wrong column is hidden.
This can be seen in your own dojo example linked in the above doc and @ https://dojo.telerik.com/UWuxOseV . Hiding column Ship Name hides Ship Address instead.
This seems to have been introduced in 2019 R2 SP1 version.
We need the ability to merge grid rows with the same values (see attached). This is a feature our customers have come accustom to with our Windows UI and the Developer Express toolkit. I understand I can manipulate the rowTemplate to achieve similar results but it is my understanding this will cause issues with row selection, editing, etc... Is this something that can be introduced in the future?
Regards,
Bracken
Hiding the first column in Grid will show a 2 pixels left border instead one.
Dojo Sample to replicate the issue: https://dojo.telerik.com/ubaLiYEN
Steps:
1. Hide the first column (OrderID) from the Column Menu.
2. Notice the doubled left-border on the left hand side of the Grid.
I'd like to request the functionality to change the multiple selection process of the Kendo UI Grid to be the same as Excel. For example, the following shows a block of cells selected instead of all of the cells in-between the selected cells from Shift+Clicking:
Thank you!