我有以 Foo 命名的模型
@(Html.Kendo().ListView<Foo>()
.Name("listView")
.TagName("div")
.ClientTemplateId("template")
.DataSource(dataSource => dataSource
.Model(model => model.Id("Id"))
.Read(read => read.Action("GetData", "Home"))
)
)
& 脚本是:
<script type="text/x-kendo-tmpl" id="template">
</script>
这里面怎么使用一个HTML标签格式这个里面的一些标签并不是像HTML那样带数据的。