MVCGrid.Net - More action link in a column with valueexpression

579 Views Asked by At

I want to add a column to the grid with more than one action link with icons like in image. And links visibility depend on a property value.

How can I do it?

enter image description here

2

There are 2 best solutions below

0
On
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>");
0
On

use template column like this :

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>");