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