我想自定义通用插入按钮的TEXT。目前它是“创建新记录”。
这是我的代码。
.ToolBar(toolbar =>
{
toolbar.Insert().ImageHtmlAttributes(new { @class = "t-icon t-add", title = "Create new inventory" });
})
答案 0 :(得分:1)
使用Text()
方法设置按钮的文字。
toolbar.Insert().Text("Create new inventory")
确保您使用的是最新版本。该方法已在最近的版本中添加。