telerik mvc网格图像按钮

时间:2011-03-09 14:47:14

标签: telerik-grid telerik-mvc

我有 telerik mvc grid ,服务器绑定,每行都有“选择”按钮, 我想让按钮有“ Image ” 我使用以下定义,但它不起作用

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

为什么?

另一个问题,我可以更改按钮的图像,如果是,怎么样?

2 个答案:

答案 0 :(得分:0)

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

答案 1 :(得分:0)

您可以将.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');
}