How do I add a custom column to the MvcContrib grid?
I haven't found a way to add a custom column to the MvcContrib grid. With the old version, you can:
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 is using?
+2
source to share
1 answer