I have the following Grid configuratrion
@(Html.Kendo()
.Grid<CoucheSondageDTO>()
.Name("CoucheSondages")
.Columns(columns =>
{
columns.Bound(c => c.CoucheDescription).Width(190).ClientTemplate("<div style='background: #=CoucheCouleur#'>#=CoucheDescription#</div>"); ;
columns.Bound(c => c.ToitTN).Width(120);
columns.Bound(c => c.BaseTN).Width(120);
columns.Bound(c => c.Description).Width(120);
columns.Command(command => { command.Destroy(); }).Width(150);
})
it gives me this:
Is there a way to color the ful row , or the whole cell content?