如何排序Excel电子表格(KENDO UI)

时间:2016-03-28 16:32:12

标签: javascript angularjs kendo-ui

当我下载excel文件时,我的电子表格没有排序。

也许你知道吗?

请帮助(

vm.gridOptionsUpdate = {
            excel: {
              allPages: true,
              fileName: 'rates-upload.xlsx'
              //sort: { field: "rate", dir: "desc" } // i need somthing like that
            },
            excelExport: function (e) {
...
}
 sortable: true,
    pageable: true,
    selectable: 'multiple cell',
    allowCopy: true,
    reorderable: true,
    columns: [
      {
        field: 'rate',
        title: 'Current Rate (EUR/SMS)',
        format: '{0:n4}'
      },

1 个答案:

答案 0 :(得分:1)

您需要使用saveAsExcel API方法将UI中应用的排序和过滤应用于使用Excel文档创建的zip。可以在以下位置找到作者(KendoUI)的一个很好的教程:

http://docs.telerik.com/kendo-ui/controls/data-management/grid/excel-export