We have a requirement from customers to allow date columns to be filtered by the following criteria:
- IsToday
- IsBeforeToday
It should appear the grid as follows:
This would mean the filter is based on current date, rather than a date selected in a datepicker.
Rather than ask for this specific functionality we would like to be able to specify custom operators for date. As per the link:
https://docs.telerik.com/kendo-ui/api/javascript/ui/grid/configuration/filterable.operators.date
You can currently only alter the text on pre configured operators. We would like to be able to add new operators, like this.
kendo.ui.FilterMenu.fn.options.operators.date.today = "Is Today";
kendo.ui.FilterMenu.fn.options.operators.date.lttoday = "Is Before Today";
We would then need to be able to configure the logic used for the new operators.
I know I can do it from the dataBound event, but... that seems like a kludge compared to just re-using the existing attributes property code on other objects.
Instead of this:
dataBound: {
$(".k-grid-edit").attr("title", "View/Edit");
}
this:
command: [{ name: "edit", text: "", click: ShowDetails, attributes: {title: "View/Edit"} }], title: "", width: 40
Hi Team,
I would like to request the functionality to add a format configuration to the columns.filterable.multi property. This way, it will be easier to customize instead of using the ItemTemplate to recreate the whole filter.
Thank you!
Grid control doesn’t allow to change width of columns via keyboard. Column width adjustments could be done only via mouse. It would be great to have this ability from the accessibility perspective.
No hot key to change width.
Any hot key (e.g. Shift + Arrow Left / Right) to change width of a column.
Kendo UI version: "2020.3.1118"
Browser: Chrome 90.0.4430.212
Grouping row in grid can expand/collapse after click on any area on the row not only after click on plus/minus icon. This behavior is similar to checkbox in browser with label for attribute
Would be nice to have a simple grouping without collapse and additional column for expand/collapse icon (just a grouping row with colspan attribute)
Hi Team,
I'd like to request to include the field's column title into the column.groupHeaderTemplate.
Thank you!
While it is currently possible to do this in JavaScript, it would be nice to have the functionality integrated into the Grid filter row. For example, columns.Bound(c => c.Title).Title("Title") .HeaderHtmlAttributes(new { style = "text-align: center;" }) .Filterable(f => f.Cell(fc => fc .ShowOperators(false) .Operator("Contains") .Template("fnFilterAsYouType") .Placeholder("Title") ));
Dear Telerik, I assume, there should be one button in kendoUI grid to scroll to bottom of grid and one button to scroll top of grid in just one click. Similarly one button to scroll extreme right and one button to scroll left of grid. These buttons can be near, vertical scroll button and horizontal scroll buttons. Regards Surinder
There is a Save Changes event but no corresponding Save Changes
I know there was a request was declined, but DOM double click can't pass data row, it is a common feature to have.
We were interested in an option for aggregation rows on top of kendo grid groups. Now they are by default on the bottom of the group which some business users don't like.
I know it has been rejected and I think it was not given any good reason. Managing dropdownnlist in datagrid is a pain and just not having pair value/text is missing and using "foreign key columns for this" is not an acceptable answer for me. It should be a basic type of column, not a template, and show a text but be set as a value because we use the text for translation purpose, so the text cannot be the value. Even with the help from your technical support, when you have many of them in one grid, it's takes a long time to code and maintain. Such a common and basic feature should be with the basic controls of the grid.
For kendo grids, it would be really useful to be able to have a right-click on the grid to select the row. I know there is a fudge to do this but it would be useful to have different actions for a left and right click, e.g. a context menu on right click instead of left.
Kendo UI Grid should have a option to set confirmTemplate options to show custom confirm window. Now browser ugly built-in prompt is awful.
Hi Team,
I would like to request to be able to utilize a Kendo UI Template to modify the formatting and content of the Kendo UI Grid's content during PDF Export. This would help gain access the grid data within the template so that I can "overwrite" the exported content's display template.
For example, the grid data could be extracted within the template. In this case, the template could utilize a Bootstrap table with some CSS classes in which it could be exported as a PDF file.
This would allow me to have better control over the content size (margin, padding, etc.) since it would be a HTML template for the exported data.
Thank you!
Need Control + F function to search the text in the Grid When we have more records and enabled virtual scrolling ,the data which is not present the view is currently not searchable using CTR+F. We need to get this enabled where finds the data and scroll down to the specific row.
Would be nice to have the checkbox selection and multiselect enabled to use the Multiselect for check the checkboxes. https://demos.telerik.com/aspnet-mvc/grid/selection
Allow users to filter with null values