0
我想向模型字段添加自定義屬性。我可以將data-email-msg
作爲屬性添加到Kendo Grid
的字段中(請查看我的示例以及如何添加它..)Kendo UI Grid dataSource模式模型字段 - 爲字段添加自定義屬性
這裏是一個例子.....
$("#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" }]
});
我已經知道上面是錯誤的。我問,有沒有辦法做到這一點?
我沒話.....生命的救星 – NoughT
我剛纔看到'class'在報價,並決定嘗試'引號數據電子郵件msg'太;) – user1102901
在看到你的答案後,它碰上了我... 感謝兄弟 – NoughT