As recently as version 2022.3.1109, I could set a grid column attribute (e.g. class) to a template and easily get conditional formatting like different cell background colors depending on value:
    columns: [
                    { field: "OrderDate", title: "Order Date", format: "{0:MM/dd/yyyy}" },
                    { field: "Freight",  
                      attributes: { 
                                    class: "#: ClassFromFreight(data.Freight) #" 
                                  } 
                    }      
Since 2023.1.117, this no longer seems to work. Was this an intentional change? Is there another way to do this now?
Just saw this:  https://github.com/telerik/kendo-ui-core/issues/7174.