Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

1 Answer

up vote 3 down vote accepted

I guess you mean changing the background color of a given row in the grid based on a given value of a model property. If so you could use the RowAttributes method:

@Html.Grid(Model.ExampleList)
     .RowAttributes(row => new Hash(@class => row.Item.IsFoo ? "redclass" : "normalclass"))
     .Columns(c =>
     {
         ...        
     })
share|improve this answer
To use the embedded syntax (e.g. @Html.Grid), I had to keep .RowAttributes() on the same line as the @Html declaration, otherwise I get a 'class is a reserved word' error. – Derek Greer Aug 20 '12 at 13:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.