将Angular Kendo UI Grid导出到Excel

时间:2014-04-30 18:27:54

标签: javascript excel angularjs

我有一个项目,我使用Angular Kendo UI Grid,并希望能够将数据导出到Excel文档。我看过ng-grid csv导出但看起来需要在插件选项中使用put,但是Angular Kendo UI Grid没有这个。有人能指出我正确的方向吗?

由于

2 个答案:

答案 0 :(得分:1)

现在您可以将以下内容添加到网格选项对象中:

toolbar: [ 'excel' ],
excel: {
        allPages: true,
        fileName: 'staticFileName.xlsx'
    }

http://docs.telerik.com/kendo-ui/web/grid/excel-export#enable-excel-export

答案 1 :(得分:0)

您可以尝试使用kendo-grid-csv-download项目。

实现此目的的另一种方法是使用您选择的语言(Python?NodeJS?)创建服务器端页面/ URL(例如:example.com/downloadcsv?searchTerm=abc&filter=def)并让它查询与您的Angular相同的API / URL查询代码以显示网格,然后生成CSV以在那里下载。