任何即将发布的版本中的angular2都会有Kendo Spreadsheet或导出到网格的excel。我们希望在angular2中使用Spreadsheet版本,因为我们使用的是angular1版本并且喜欢升级。这是可能的。
网格示例Click here
电子表格示例 https://demos.telerik.com/kendo-ui/spreadsheet/index
如果没有办法将电子表格合并到angular2应用程序中?
答案 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
}
}