I am tinkering with the MVCContrib Grid and am stuck on how to format a row of data in the grid based on the data.

For example, say we have a grid of products, where each product has data fields like name, price, and discontinued. I'd like to highlight all product rows that are discontinued.

One workaround would be to use jQuery on the client-side to apply a CSS class to those rows where the discontinued cell is TRUE, but that seems like a brittle solution. I'm hoping there's a way to do it on the server-side via the Html.Grid method call.

Thanks

link|improve this question

80% accept rate
feedback

1 Answer

up vote 9 down vote accepted

Hello Scott: Try something like the following to add RowAttributes -

@Html.Grid(Model)
    .WithModel(new CustomerGridModel())
    .Sort(ViewData["sort"] as GridSortOptions)
    .Attributes(id => "grid", style => "width: 100%;")
    .RowAttributes(data => new MvcContrib.Hash(
        @class => data.Item.Discontinued) ? "discontinued" : "")

This will add a class attribute to the tr element. Then, create a class along the lines of:

tr.discontinued td {background-color: red;}

Sorry for the long code snippet...

link|improve this answer
That worked swimmingly, thanks! – Scott Mitchell Jan 12 '11 at 0:57
Just found this... fabulous snippet. Thanks! – Ben May 18 '11 at 12:15
Have an upvote! This worked great for me in my project. Cheers! – Ek0nomik Jan 18 at 17:17
Wrap the grid in round brackets and you can make the fluent-syntax multi-lined ;-) @(Html.Grid(Model) .WithModel(..) ... ) – Sascha May 4 at 11:21
feedback

Your Answer

 
or
required, but never shown

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