任何人都可以展示如何使用" kendo.template"将以下脚本绑定到剑道网格中的列中?
<script id="edit" type="text/x-kendo-template">
<div>
<div data-bind="style: { color: 'red' }">
Profit Information
</div>
</div>
</script>
答案 0 :(得分:0)
如果您在网格中使用它,则不应使用data-bind
,因为它已绑定到模型。您应该直接使用HTML作为:
<script id="edit" type="text/x-kendo-template">
<div>
<div style="color: red">
Profit Information
</div>
</div>
</script>