Hi Team,
We are using Syncfusion MVC EJ CommandGrid, we want to add edit/delete icons instead of the "Edit" text shown in below code
Eg:
col.HeaderText("Action").Commands(command =>
{
command.Type(UnboundType.Edit)
.ButtonOptions(new Syncfusion.JavaScript.Models.ButtonProperties()
{
Text = "Edit"
}).Add();
}