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

I've been trying to change the format of a single column in a WebGrid without much success.

Said column is this:

grid.Column(columnName: "EmailAddress", header: "Email Address", format:(item) => Html.EmailLink(item.EmailAddress, item.EmailAddress, ""), canSort: false),

The error is:

The best overloaded method match for 'System.Web.Helpers.WebGrid.Column(string, string, System.Func, string, bool)' has some invalid arguments

I am confused as the method signature matches. Also, if I change the column to:

grid.Column(columnName: "EmailAddress", header: "Email Address", format:(item) => new HtmlString(String.Format("<a href=\"mailto:{0}\" class=\"{2}\">{1}</a>", item.EmailAddress, item.EmailAddress, "")), canSort: false),

It works without error.

For reference, EmailLink is a very basic HtmlHelper extension method:

    public static IHtmlString EmailLink(this HtmlHelper helper, string emailAddress, string linkText, string linkClass) {
        return new HtmlString(String.Format("<a href=\"mailto:{0}\" class=\"{2}\">{1}</a>", emailAddress, linkText, linkClass));
    }

Apologies if I've missed any detail - this is my first post eek

share|improve this question

1 Answer

up vote 17 down vote accepted

This is due to the ugliness of WebGrid and all this dynamic crap. You need a cast:

grid.Column(
    columnName: "EmailAddress", 
    header: "Email Address", 
    format: item => Html.EmailLink(
        (string)item.EmailAddress, 
        (string)item.EmailAddress, 
        ""
    ), 
    canSort: false
)

This being said don't hesitate to checkout MvcContrib Grid or the Telerik Grid which are far better.

share|improve this answer
1  
Perfect, this fixed the problem. I'm going to look at MvcContrib controls as this solution is very inelegant. I wasn't aware they had released anything Razor/MVC3 compatible yet though? – Rory McCrossan Mar 22 '11 at 19:52
1  
@Rory McCrossan, the WebGrid was released with MVC 3 and it was supposed to work nicely with Razor, so that's the best you get from Microsoft at the moment. – Darin Dimitrov Mar 22 '11 at 19:54
2  
It's always the best you get from Microsoft. – anon271334 Mar 24 '11 at 1:18

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.