我目前正在使用 MVC4 中的 ASP.NET MVC 帮助程序和 Infragistics igGrid 控件,并且正在寻找一种插入自定义列的方法,以便为 CRUD 功能实现 AJAX 调用。我发现的唯一解决方案涉及公开在当前架构中不是选项的实体。本质上,我只需要知道如何添加一个可以包含简单 href 的新列来调用引用特定行上的模型的现有 REST API。
这是我到目前为止所拥有的...
<div class="queue-grid">
@( Html.Infragistics().Grid(Model).Columns( c =>
{
c.For(m => m.DateSubmitted).HeaderText...
c.For(m => m.RequestorName).HeaderText...
c.For(m => m.OrganizationName).HeaderText(...
c.For(m => m.CategoryName).HeaderText(...
c.For(m => m.DesiredCompletionDate).HeaderText(...
c.For(m => m.ChargeCode).HeaderText(...
c.For(m => m.ApprovingManagerName).HeaderText(...
c.For(m => m.Description).HeaderText(...
c. //Edit function
c. //Delete function
....