Hi, I'm updating our version of the Kendo Grid from 2021 (don't recall the exact version) to 2023.1.117 and, among other changes, it seems that the following syntax for binding the Description property to data_description is no longer valid:
columns.Bound(w => w.Description).Width(100).Title("Description")
.HtmlAttributes(new { @class = "someClass", data_description = "#=Description#" });
Similar to what is shown at the bottom of this thread:
https://www.telerik.com/forums/creating-data-bound-html-attributes-in-mvc-grid-cells
This was working prior to this update, but I can't find any documentation on the change within the site and the grid example shown here:
https://demos.telerik.com/aspnet-mvc/grid
seems to indicate that it should still work this way, though that example may be outdated.
Note that the same Description property, referenced the same way (#-Description#) still works inside of a ClientTemplate.