我一直在寻找但无法找到最近用图像替换网格命令按钮文本的示例。我从大约2013年尝试了一个较旧的例子,但我打破了网格,这使我相信他们已经改变了网格的工作方式(最有可能)。有谁知道一个有效的例子?我试过了:
columns.Command(command =>
{
command.Custom("ShowExceptions").Click("ShowException").Text(" ");
command.Destroy();
}).Width(40);
但是command.Destroy()不会飞。
An exception of type 'System.MissingMethodException' occurred in mscorlib.dll but was not handled in user code
有什么想法吗?
感谢。
答案 0 :(得分:0)
我发现如果你添加一个带有.k-grid-(nameOfYourCommand)类的样式块,你可以使用css。
所以在我的例子中
<style>
.k-grid-ShowExceptions {
background-image: url("../../Resources/Calendar_16.png");
background-repeat: no-repeat;
}
</style>
将在按钮中显示日历的居中图像。