正如我所看到的,Kendo UI网站上的所有示例都使用了列ID。所以,如果我们有 列如:
{
field:"DocumentID",
title:"Id of document"
}
然后验证消息看起来像" DocumentID需要",但我想得到" Id所需的文件"。我该怎么办?
答案 0 :(得分:0)
您需要创建自定义编辑器:
{
field: "DocumentID",
title: "Id of document",
editor: function(container) {
$('<input class="k-textbox" required name="ProductName" data-bind="value: ProductName">')
.attr("data-required-msg", "Id of document required")
.appendTo(container);
}
}