vote up 1 vote down star

I don't find a method to add a custom column in a MvcContrib Grid. With the old version you could do :

column.For("Edit").Do(p => { %>
		<td>
			<a href="/People/Edit/<%= p.Id %>">Edit</a>
		</td>
	%>});

But with the latest version, the Do() method disappears... So now which method use ?

flag
Solution found... – LoSTxMiND Sep 21 at 16:40

1 Answer

vote up 1 vote down check

I find the solution :

You have to use the MvcContrib.UI.Grid.ActionSyntax namespace

and it provides you an extension method called "Action".

Here is a simple use :

column.For("PDF").Named("PDF").Action(p => { %> 
<td><img src="../Content/Images/pdf.gif" /></td> <% });
link|flag

Your Answer

Get an OpenID
or

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