SAP UI5表导出

时间:2015-03-10 12:03:23

标签: sapui5 hana

我正在尝试使用以下函数

将SAP UI5表数据导出到csv文件
           table_export = oTable.exportData();
            table_export.saveFile('MY');

也尝试了,

   oTable.exportData().saveFile('MY');

但是我收到以下错误

      Uncaught TypeError: Cannot read property 'indexof' of undefined

有人可以帮我解决错误

BR- Sathish

1 个答案:

答案 0 :(得分:0)

点击“关闭”按钮,您可以以excel格式下载表格

new sap.m.Button({
    icon:"sap-icon://download",
    type:"Emphasized",
    press: function(oEvent) {
        debugger;

        jQuery.sap.require("sap.ui.core.util.Export");
        jQuery.sap.require("sap.ui.core.util.ExportTypeCSV");

        oTable.exportData({

        }).saveFile()
        .always(function() {
            this.destroy();
        });

在定义表格列时,也请提及以下属性。

sortProperty: "approved_on",
filterProperty: "approved_on"

注意:“approved_on”是绑定到相应列的值。