MVCGrid.Net - 具有valueexpression的列中的更多操作链接

时间:2015-11-25 12:08:13

标签: mvcgrid.net

我想在网格中添加一列,其中包含多个动作链接以及图片中的图标。 链接可见性取决于属性值。

我该怎么做?

enter image description here

2 个答案:

答案 0 :(得分:0)

使用模板列,如下所示:

cols.Add("Actions").WithSorting(false)
.WithHeaderText("َActions")
.WithHtmlEncoding(false)
.WithValueTemplate("<a href='{ControllerName}/{Action}/{Model.Id}' title='View'><i class='fa fa-eye'></i></a> | <a href='{ControllerName}/{Action}/{Model.Id}' title='Edit'><i class='fa fa-edit'></i></a> | <a href='{ControllerName}/{Action}/{Model.Id}' title='delete'><i class='fa fa-times'></i></a>");

答案 1 :(得分:0)

cols.Add()
    .WithColumnName("Actions").WithSorting(false)
    .WithHeaderText("Actions").WithHtmlEncoding(false)
    .WithValueExpression(i => i.ID.ToString())
    .WithValueTemplate(" <a href = 'ControllerName/Details/{value}' title='View'>View</a> |"
                + " <a href = 'ControllerName/Edit/{value}' title='Edit'>Edit</a> |"
                + " <a href = 'ControllerName/Delete/{value}' title='Delete'>Delete</a>");