Kendo UI 网格数据源架构模型字段 - 向字段添加自定义属性

Kendo UI Grid dataSource schema model fields - add custom attributes to fields

我想向模型添加自定义属性 fields.Think 我可以将 data-email-msg 作为属性添加到 Kendo Grid 中的字段吗?(请查看我的示例以及我如何添加它。 .)

这里有一个例子.....

$("#grid").kendoGrid({
  columns: [ {
    field: "name",
    title: "Name",
    attributes: {
      "class": "table-cell",
      style: "text-align: right; font-size: 14px",
      data-email-msg : "enter a valid email massage"
    }
  } ],
  dataSource: [ { name: "Jane Doe" }, { name: "John Doe" }]
});

我已经知道上面是错误的。请问有什么办法吗??

data-email-msg 放在引号中,例如 "data-email-msg"