Hi,
trying to port an Telerik MVC Grid.
But there is no option to change the button type.
.Columns(cols =>
{
....
cols.Command(commands =>
{
commands.Edit().ButtonType(GridButtonType.Image);
commands.Delete().ButtonType(GridButtonType.Image);
})
})
.ToolBar(tb =>
{
tb.Insert().ButtonType(GridButtonType.Image);
})
Please tell me how to do this...