Tag: 格式化程序

格式化程序parameter passing为null

我正试图将表格数据导出到Excel工作表。 一切正常,没有格式化。 但是在将表格转换为Excel之前,我必须格式化一些单元格。 我正在debugging代码。 格式化函数的参数作为空值传递。 这是我的代码: var oExport = new sap.ui.core.util.Export({ exportType: new sap.ui.core.util.ExportTypeCSV({ separatorChar: ";" }), models: this.getView().getModel(), rows: { path: "/FaaliyetServisiSet" }, columns: [{ name: "Kişi", template: { content: "{Klnad}" } }, { name: "Faaliyet", template: { content: "{Falyt}" } }, { name: "Süre", template: { content: { parts: ["Sure"], formatter: function(oValue) { […]