如何将动态工具提示添加到Kendo MVC网格中的列

时间:2019-03-06 07:07:25

标签: jquery asp.net-mvc kendo-grid

.HtmlAttributes(new {title =“#= UserApprovalRemark#”})

不适用于为kendo mvc网格添加动态工具提示。 this gives the model name itself as output

1 个答案:

答案 0 :(得分:0)

我认为您可能已经将它与kendo的jQuery版本混合了。

对于asp.net-mvc,这可能对您有用:

.HtmlAttributes(new { @title = "UserApprovalRemark" })
相关问题