This question is locked. New answers and comments are not allowed.
I am defining a grid column that is going to be an actionlink. I need to display a name (o => o.name), but I need to pass a filer_id (o => o.filer_id) instead of the name as a parameter to the method called by the actionlink. My problem is that I can only use one parameter per column, and I need two. If I could use (o => o) then Format(new ActionLink("{0}".name, "MyMethod", "MyController", new { filer_id = "{0}".filer_id }, null)) is what I want to do. Can you suggest a way to accomplish this?
Thanks in advance...
Thanks in advance...