angular2会有kendo电子表格吗?

时间:2017-01-26 16:24:47

标签: angular kendo-ui telerik spreadsheet

任何即将发布的版本中的angular2都会有Kendo Spreadsheet或导出到网格的excel。我们希望在angular2中使用Spreadsheet版本,因为我们使用的是angular1版本并且喜欢升级。这是可能的。

网格示例Click here

电子表格示例 https://demos.telerik.com/kendo-ui/spreadsheet/index

如果没有办法将电子表格合并到angular2应用程序中?

1 个答案:

答案 0 :(得分:0)

如果你想访问另一个脚本中的方法,你使用哪个角度版本并不重要。这就是你应该如何使用angular2

<script src="js/jquery.min.js"></script>
<script src="js/jszip.min.js"></script>
<script src="js/kendo.all.min.js"></script>

在index.html中包含这些脚本,并为了使用declare访问这些脚本,并在variable

中创建any类型service
import { Injectable } from '@angular/core';

declare graphs:any;
//graphs represents the scripts you have imported from index.html 

@Injectable()
export class GraphService {

  constructor() { }

  dosomethingWithgraphs(){
   graphs.methods()//accessing its methods
   graphs.properties//accessing its properties
  }
}