Color out a row in Kendo Grid [duplicate]
问题 This question already has answers here : Gray out a row in kendo grid based on column value (2 answers) Closed 3 years ago . I have a Kendo Grid whose values get populated based on a post call. I need to gray out an entire row if one of the column has a value "REGISTERED". Is there a way we can achieve this? Here is my code: $("#grid").kendoGrid({ columns: [ { field: "name", title: "Release Name" }, { field: "number", title: "Number" }, { field: "status", title: "Registration Status" } ],