我想自定义通用插入按钮的文本。当前是“创建新记录”。

这是我的代码。

.ToolBar(toolbar =>
{

    toolbar.Insert().ImageHtmlAttributes(new { @class = "t-icon t-add", title = "Create new inventory" });
})

最佳答案

使用Text()方法设置按钮的文本。

toolbar.Insert().Text("Create new inventory")


并确保您使用的是最新版本。该方法是在最近的发行版中添加的。

关于c# - Telerik Grid工具栏插入-显示自定义文本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13963696/

10-12 19:52