3

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

这是我的代码。

.ToolBar(toolbar =>
{

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

1 回答 1

1

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

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

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

于 2012-12-22T08:13:11.420 回答