Kendo-Grid for Vue API and Template

写此博客的原因:在做项目时前端用的vue,后端用的jfinal。在前端veu中调用了kendo grid插件,但是在官方文档中对kendo grid for vue 的api和template都不太详细,大多都是for jquery的。在我想要使用回调函数和增加一些属性的时候,遇见了麻烦,后来在我不懈的努力和同事的帮助下终于解决了我的问题。

For Vue的官方template

For Jquery的官方template




    
    
    
    

    
    
    




        

两者之间的联系

1.Jquery中的dataSouce属性的申明都在Vue中的中生命
2.Jquery中的层级关系,在vue中都用“-”来连接 如:
  Jquery中:                         vue中
  transport{                         transport-read="www.baidu.com
      read:www.baidu.com
  }
  schema{                            shcema-model-field
      model{
          filed
      }
  }

VUE中的注意事项

schema-data="'data'"      一定到单引号,表示直接从response对象中的data中绑定。

kendo-grid中的属性

官网API去找吧

你可能感兴趣的:(Kendo-Grid for Vue API and Template)