Recently moved from a 2022 release to a 2025 release. We use titles for columns and footers pretty extensively and had to change the column attributes setup away from using templates, as I saw this issue in GitHub plus a post in this forum.
https://github.com/telerik/kendo-ui-core/issues/7174
https://www.telerik.com/forums/templates-in-column-attributes-no-longer-supported
Our new setup looks something like this:
{
field: "someField",
atributes: (data) => {
return { title: `${kendo.toString(data.someField, '0.#')}` };
}
}However, following the same method for footerAttributes doesn't yield the same result, in fact I get no title at all. I've tried two other approaches I've tried, and which also didn't work:
{
field: "someField",
aggregates: ["sum"],
footerAttributes: ({ someField }) => {
return { title: `${kendo.toString(someField.sum, '0.#')}` };
}
}{
field: "someField",
aggregates: ["sum"],
footerAttributes: attributeHandler
}
attributeHandler: function (data) {
return { title: `${kendo.toString(data.someField.sum)}` };
}
Hello all,
I’m working on an inline editable Kendo Grid and trying to add a dropdown list for one of the columns. However, when I run it, the dropdown doesn’t load properly. Instead of showing the item names, the textbox displays [object Object].
I’m using Kendo version 2025.3.825, and my code must comply with CSP rules.
Could someone guide me on how to fix this so the dropdown shows the correct text values instead of the object?
ASP.NET MVC Grid Custom Editing Demo | Telerik UI for ASP.NET MVC

I am trying to implement keyboard only navigation on a web application I am developing to meet accessibility requirements. I am running into problems with the Kendo Grid.
Here is a dojo: https://dojo.telerik.com/KUcMekCh
I have a grid with 2 locked columns with a button in the first column and a hyperlink in the second column, the other columns just have text. I set navigatable to true. None of my fields are editable.
When the user tabs to the grid, they first get the search bar in my custom grid toolbar. Next they tab to the button (which happens to be a bootstrap dropdown menu but I don't think that is relevant). Here is where the issues start:
I have a kendo grid with several columns. The grid has in-cell editing enabled. I need the user to be able to press the tab key and ONLY tab between cells with focusable elements (such as a button) or editable cells. How would I accomplish this?
Note: the solution here does not work when you have grouped or filtered rows.
https://www.telerik.com/kendo-jquery-ui/documentation/knowledge-base/skip-non-editable-cells-when-tabbing
I have a grid with a local data source and some editable cells. When a user changes one of the cell's values, it needs to run a few different api calls to get the new values for some of the other cells and then display those. The problem is that when I call .set("fieldName", "value") inside the save command, I get an endless loop. How do I fix this? I have attached a Dojo showing what I mean. If you change the name in the Dojo, the age and DOB should change to something else (I know my example is a little silly given the fields but this is just an example, my real fields are different). Instead, I get an endless loop in the console.

Hi,
I have downloaded the zip file from telerik(Progress® Telerik® UI for ASP.NET MVC) site and used in my project. I have licensed version of telerik. I applied license in below approaches
1. Downloaded the key license .txt file and placed in the root folder of project and also added in system variables.
2. Downloaded the script license and placed in the project scripts, refereed in _layout.cshtml page.
Either of the approaches I am getting a warning message at the top of my application while running the application.
message: both paid and trial usage. Learn how to set up a license key."
Please guide me how to setup license if I am missing something here.

I have a grid with a filterable cell. A translate pipe is used in its template - this causes that the filter does not work properly, as it recognizes the original values and not the translated ones.
{
field: "xxx",
title: "foo",
width: "120px",
template: "{{ 'yyy' | translate }}",
filterable: {
cell: {
showOperators: false,
operator: 'contains',
suggestionOperator: "contains"
}
}
},
Is there any way to get the filter values translated as well?
This question is similar to https://www.telerik.com/forums/grid---custom-filtering-function-for-a-particular-column, except that this is related to Kendo for jQuery.

Hi,
I want load dropdown list in a editable grid, I have used below approach. But List was not loading instead I am getting [object object] in textbox.
Can you please help me to find fault.
I ma using Kendo 2025.3.825 version and it should compile with CSP.
ASP.NET MVC Grid Custom Editing Demo | Telerik UI for ASP.NET MVC
Hi,
I as using Editor Templates for Custom Editable popup window in Kendo grid and I have to configure CSP header "script-src 'self'". I am able to open the editable popup window but getting below error. I was thinking this is due to using Editor Templates. Can you please help to solve this. If not possible any other approach to fix this.
I am using Telerik Kendo 2025.3.825 version
"Executing inline script violates the following Content Security Policy directive 'script-src 'self' 'unsafe-eval' https://www.googletagmanager.com https://www.google-analytics.com'. Either the 'unsafe-inline' keyword, a hash ('sha256-+x7Aqy5UP8GiQGBhhjEJzGrnw0mBj6s2jbzcAjtk9C0='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked."