This question is locked. New answers and comments are not allowed.
Within the columns section I can use lambda espressions and assign the field ProjectId as follows:
How would I do the same thing within the dataBind section, I would like to something like the following ? I have 2 examples I'm trying to do and I've struggled to figure out how to make it happen for both.
columns.Template(o =>
{
%>
<%= Html.ActionLink("Edit", "Edit", new { id = o.ProjectId }) %>
<%
How would I do the same thing within the dataBind section, I would like to something like the following ? I have 2 examples I'm trying to do and I've struggled to figure out how to make it happen for both.
.DataBinding(dataBinding =>
{
dataBinding.Server().Update((ProjectController c) => c.Details( o => o.ProjectId));
dataBinding.Server().Delete("Delete", "FFFFF"), new { o => id = o.ProjectId}; }