I know how to show a link on an MVCContrib Grid column by using Html.ActionLink, but what I want to do is to base on the value of a field where if the field has a value = false then show text and if it has true then show a link.
It won't let me do something like this:
column.For(x => x.HasValue == false ?
x.Name : Html.ActionLink(x.Name, "MyMethod", "MyController")
"cannot convert lambda expression to type 'string' becasue it is not a delegate type"
It lets me use Html.Raw for both conditions but when I run the app, I get the same error message
Thanks in advance.
x.Nameand the code above has a missing right parenthesis, is that part of the problem? – Philip Fourie Feb 20 at 5:19