I'm trying to build a custom column for an MVCContrib grid, but an getting tripped up by the Razor syntax. Here is my code for building a custom column:

@{Html.Grid(Model).Columns(column =>
    {
        column.For("Data").Do(p => {
        <div>@p.Name</div>
        });
    }).Render();
}

How do you mark the line containing the div so that Razor will treat the line as HTML?

link|improve this question
feedback

1 Answer

The following should work:

@(Html
    .Grid<SomeViewModel>(Model)
    .Columns(column => {
        column.Custom(@<div>@item.Name</div>).Named("Data");
    })
)
link|improve this answer
+1 switching @{Html.Grid....} to @(Html.Grid....) made my grid show up. Razor enclosures are strange =/ – Chris Marisic Mar 21 '11 at 18:13
Thanks for this post; I was originally trying to create my own renderer, but to no avail. I ended up just using a custom column to display the data how I wanted and it worked perfectly. – Ek0nomik Jan 11 at 15:17
feedback

Your Answer

 
or
required, but never shown

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