我使用 Telerik MVC Grid,我正在尝试更改自定义列的按钮图像。
column.Command(Sub(cmd)
cmd.Custom("Editar").ButtonType(GridButtonType.BareImage).HtmlAttributes(New With{ .class="btnDelete"}).DataRouteValues(Sub(route)
route.Add(Function(x) x.idPedidoDocumentacao).RouteKey("idPedidoDocumentacao")
End Sub).Action("DetalhePedido", "Pedido").SendDataKeys(True)
End Sub).Width("5%").Title("Editar")
我在我的 css 文件中创建了一个类:
.btnDelete
{
background-position:0px 0px;
background:url(/Images/delete.png);
}
谁能帮我解决这个问题?谢谢!