Telerik MVC 网格图像按钮

发布于 2024-10-21 14:56:42 字数 274 浏览 3 评论 0原文

我有一个telerik mvc网格,服务器绑定,每行都有“选择”按钮, 我想让按钮有“图像” 我使用以下定义,但它不起作用,

columns.Command(commands => commands.Select().ButtonType(GridButtonType.Image)).Title("");

为什么?

另一个问题,我可以更改按钮的图像吗?如果可以,如何更改?

I have a telerik mvc grid , server binding , each row has "Select" button ,
I want to let the button to has "Image"
I use the following definition but it doesn't work

columns.Command(commands => commands.Select().ButtonType(GridButtonType.Image)).Title("");

why?

another question , can I change the image of the button , if yes, how?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

音盲 2024-10-28 14:56:42

我的问题是,我将样式放在标题的脚本中
解决方案:将样式放在正文中的脚本中

my problem was that , I put the style in a script in the header
solution : put the style in a script in the body

三生殊途 2024-10-28 14:56:42

你可以给 .HtmlAttributes 你的按钮像

columns.Command(commands => commands.Select().ButtonType(GridButtonType.Image)).HtmlAttributes(new { @class="btn"}).Title("");

//and you have to override the image with your class
.btn .t-icon{
    background-image: url('../../Images/img.png');
}

You can give .HtmlAttributes your button like

columns.Command(commands => commands.Select().ButtonType(GridButtonType.Image)).HtmlAttributes(new { @class="btn"}).Title("");

//and you have to override the image with your class
.btn .t-icon{
    background-image: url('../../Images/img.png');
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文