[Solved] (Grid) Setup of footer attributes different from column attributes?

0 Answers 4 Views
Grid Templates
Francisco
Top achievements
Rank 1
Francisco asked on 31 Mar 2026, 12:10 PM

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)}` };
}

No answers yet. Maybe you can help?

Tags
Grid Templates
Asked by
Francisco
Top achievements
Rank 1
Share this question
or