It would be useful to add resize to content support for a grid column. Also, resizing has the following issues: 1) The last column is difficult to resize as the right resize cursor is not visible after you reduce its size the first time 2) If you reduce the size of the last column, the background of the grid area is displayed. This is not ideal, it would be better if the row style (e.g. alternating) fills the empty space (add an empty column?) Thanks! Giuseppe
The grid widget has a columns editor which allows a field to be a custom widget, like a drop-down list for an autocomplete. I want the title column to be selected from a drop-down list
Add a property to the grid or the grid row template for setting the max and min height of rows in the grid. If the content on a cell exceeds the available space when the max row height has been reached then show a "More..." button/link in the lower right corner of a cell - if the user clicks this then display the full contents of the cell in an overlay or otherwise show the full contents in a tooltip that shows when you hover over the truncated cell.
Give the developer an option to show a search field in the grid. This option should be configurable so we could chose which column(s) to search in. With a single keyword the user would be able to get a specific row.
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.
Currently, when a foreignKey column is configured in a Grid and the value is null, the valuePrimitive option of the DropDownList should be set. However, in order to set the valuePrimitive for foreignKey column configuring a custom editor is needed as described in the link here. I would like to have the possibility to set the valuePrimitive option as part of the column configurations, without adding a custom editor. For example:
columns: [Hi Team,
I would like to request the functionality to group data in a Kendo UI Grid but show only distinct records based on certain fields.
Thank you!
Currently, If I use Kendo Grid on a page with 10 column by 10 rows(and have 3 rows in editable mode & 7 rows in disabled/locked mode). I can not navigate through grid control via TAB key with only Enabled columns. It still go through each control. Logging to support request, I am being advised that I need to impalement my own TAB logic. However, if you think, it doesn't make sense for TAB to be stopped at Disabled column. It is probably stopping as Kendo doesn't have any direct mechanism of disabling some columns for edit. I wrote some Jquery which doesn't let us click on some column and I used CSS to make it look like disabled. It is nice if ClientTemplate allows facility where we can enable/disable controls and TAB key respect those.
Viewing the grid columns and arranging data based on respective media queries
Hi,
It would be great if the KendoUI Grid could be enhanced to automagically recognize when it's grouping by a date field and then offer additional options to group the dates by Day, Week, Month, Quarter, or Year.
Thank you.
Barry
Currently it is only possible to include some custom header/footer data in an exported Excel worksheet. which is either at the beginning or the end of the rows.
It would be nice to have a feature to set the Excel-Header/Footers from Kendo UI while creating the export file. This Excel headers/footers are only visible when the Excel-Sheet gets printed e.g. you can include Report-Name, creation date or page x of y information.
Have a look at the Header/Footer feature in Excel: Headers and footers in a worksheet - Excel (microsoft.com)
Grid's footer is moving together with its pager based on the configuration of the pageable.position property.
The footer of the Grid is positioned above its pager
With pageable.position set to "top" only the pager should be moved above Grid's rows. Its footer should stay at the bottom of the component, below its rows.
Detail Template is toggled on Enter.
When the target is any of the Command Buttons, the Grid should hide/show the detail view.
Bug report
In Grid Multi filtering checkboxes and their labels are misaligned.
Reproduction of the problem
In the official demo: https://demos.telerik.com/kendo-ui/grid/filter-multi-checkboxes
Expected/desired behavior
Checkboxes and labels shall be aligned.
Workaround:
The following CSS can be applied:
<style>
.k-label span {
vertical-align: top;
}
</style>
Dojo: https://dojo.telerik.com/OgiYEBiB
Environment
Kendo UI version: [all]
Browser: [all ]
I'm trying to test the accessibility of the grid detailTemplate on https://demos.telerik.com/kendo-ui/grid/detailtemplate , namely keyboard navigation.
Honestly, I don't even know where I am. I know when I'm focused on the button "Edit in theme builder" (it's barely visible, but visible), and when I press tab, document.activeElement points to the first table header ("Last Name"), but it's not visible at all. Then I keep getting lost.
I have tested it with all sass-based themes and the less-based Material theme.
The details for this can be found in ticket #1519224
Given some XML that has child nodes and attributes, I'm binding to a grid with no problem. The child grid for each row (built using detailInit) get's the data from the parent row e.data.get("BillRows")
If those rows have attributes, the '@' signs breaks the javascript for the grid. As you can see in the ticket, every attribute needs to be renamed before I can build the child grid.
Should be a way to use attributes in XML bound to a datasource/grid for all levels of grids.
Rick
When a Kendo UI Grid has been initialized via a table, If the user sets the th element with data-menu="false", the menu attribute is read as a string instead of a boolean.
The data-menu configuration should be parsed to a boolean.
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.