如何将参数传递给kendo模板

时间:2015-12-19 20:27:06

标签: kendo-ui kendo-template

我有这段代码:

<script id="rowLeaveTemplate" type="text/x-kendo-tmpl">
        if (selfActions[i].name === '???action.name???' ){#
            <input type="checkbox" />  some text
        # }  # 
</script>

我想转换为模板,例如:

action.name

如何将参数'???action.name???'传递给模板以替换style

1 个答案:

答案 0 :(得分:3)

这样的事情:

actionColumn = { 
    template: function(dataItem) {
        return kendo.template($("#rowLeaveTemplate").html())({ actionName:action.name });
    }
}

和剑道模板本身:

<script id="rowLeaveTemplate" type="text/x-kendo-template">
    # if (selfActions[i].name === actionName ){#
        <input type="checkbox" />  some text
    # }  # 
</script>