I was wondering how to change the colour of a row in a Html.Grid, if a 'Completed' boolean property equals true. Here is an example grid:
@Html.Grid(Model.ExampleList).Columns(c =>
{
c.For(a => string.Format("{0:dd/MM/yyyy}", a.DateRequested)).Named("Date Requested");
c.For(a => a.Comment).Named("Comment");
c.For(a => a.Completed).Named("Completed");
})
Any help would be greatly appreciated.
Thanks.