我的 cshtml 中有 Telerik Grid,它在 Telerik Grid 中有两个自定义列命令。现在自定义命令呈现为按钮,我希望它们显示为链接而不是按钮.. 可能吗?如何实现?
自定义列命令代码如下
columns.Command(commands => commands
.Custom("Edit")
.Text("Edit")
.SendState(false)
.DataRouteValues(route =>
{
route.Add(o => o.SuppliersInvoiceNumber).RouteKey("InvoiceNumber");
})
.Ajax(true));
columns.Command(commands => commands
.Custom("remove")
.Text("Delete")
.SendState(false)
.DataRouteValues(route =>
{
route.Add(o => o.PONumber).RouteKey("PONumber");
})
.Ajax(true));