有人知道如何在Kendo UI中更改自定义按钮的文本,如下所示:
c.Command(command =>
{command.Custom("custom").Click("Action").Text("Text");
})
为了点击该按钮后,文本可能会发生变化。
提前感谢您的答案。
答案 0 :(得分:0)
使用您的示例代码,
Text(“”)参数是默认文本(执行Razor /页面加载时)
c.Command(command => {command.Custom(“custom”)。点击(“操作”)。文字(“文字”);})
你需要一个像:
这样的功能function Action(e) {
e.target[0].innerText = "Some new text for the button"
}