【发布时间】:2019-03-06 07:07:25
【问题描述】:
.HtmlAttributes(new { title = "#= UserApprovalRemark #" })
它不适用于为 kendo mvc 网格添加动态工具提示。 this gives the model name itself as output
【问题讨论】:
标签: jquery asp.net-mvc kendo-grid
.HtmlAttributes(new { title = "#= UserApprovalRemark #" })
它不适用于为 kendo mvc 网格添加动态工具提示。 this gives the model name itself as output
【问题讨论】:
标签: jquery asp.net-mvc kendo-grid
我想你可能把它和 jQuery 版本的剑道混在一起了。
对于 asp.net-mvc,这可能对你有用:
.HtmlAttributes(new { @title = "UserApprovalRemark" })
【讨论】: