我正在使用Kendo Grid,我想要点击列时的链接。我想要字段:“名称” link.and为链接名称
设置css这是我的代码:
columns: [
{ field: "Id", title: " id", template: "<a href='http://www.codeproject.com/'>Id</a>" },
{ field: "Name", title: "Product Name" },
{
title: "Action",
template: "<a href='http://www.codeproject.com/'>Edit</a>"
},
答案 0 :(得分:0)
为此,您必须在列中设置template:
{
field: "Name",
title: "Product Name",
template: "<a href=''>#= Name #</a>"
},
您可以通过向a
标记添加类来应用这些样式。
更新
要使用@Html.ActionLink
我建议使用此类模板:
<script id="link-template" type="text/x-kendo-template">
# var link = "@Html.ActionLink("{0}", "Index", "Home")".replace("{0}", Name); #
#= link #
</script>
然后使用如下:
template: kendo.template($("#link-template").html())
试一试,我没有测试过。