码迷,mamicode.com
首页 > 其他好文 > 详细

(四) kendo UI 模板控件template使用与注意事项

时间:2014-07-23 20:39:25      阅读:382      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   re   c   

<script id="index" type="text/x-kendo-template"></script>

=======================================================
<script id="index" type="text/x-kendo-template">
    <span>Hello World!</span>
</script>

<script>
    var index = new kendo.View(index);
    //var index = new kendo.View(<span>Hello World!</span>); //直接写HTML代码
    index.render("#app");//显示
    //$("#app").append(index.render());//真正加入代码
    //$("#app").html($("#index").text()) //jQuery语法

    //var templateContent = $("#myTemplate").html(); 
    //var template = kendo.template(templateContent); 
    //var data = [{ name: "John", isAdmin: false },{ name: "Alex", isAdmin: true }]; 
    //var result = kendo.render(template, data); //render the template 
    //$("#users").html(result); //append the result to the page 

</script>

(四) kendo UI 模板控件template使用与注意事项,布布扣,bubuko.com

(四) kendo UI 模板控件template使用与注意事项

标签:style   blog   color   使用   re   c   

原文地址:http://www.cnblogs.com/yzs1013/p/3863809.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!