このイベントは列がエクスポートされるときに発生します。
this.exporterService.columnExporting.subscribe((args: IColumnExportingEventArgs) => {
// put event handler code here
});
IgxBaseExporter
このイベントは、エクスポート処理が終了したときに発生します。
this.exporterService.exportEnded.subscribe((args: IExcelExportEndedEventArgs) => {
// put event handler code here
});
IgxExcelExporterService
このイベントは行がエクスポートされるときに発生します。
this.exporterService.rowExporting.subscribe((args: IRowExportingEventArgs) => {
// put event handler code here
});
IgxBaseExporter
IgxGrid コンポーネントのデータをエクスポートするメソッド。
this.exporterService.export(this.igxGridForExport, this.exportOptions);
IgxBaseExporter
任意の配列のデータをエクスポートするメソッド。
this.exporterService.exportData(this.arrayForExport, this.exportOptions);
IgxBaseExporter
Ignite UI for Angular Excel Exporter Service - ヘルプ
Ignite UI for Angular Excel Exporter サービスは、Microsoft® Excel® 形式で生データ (配列) または
IgxGrid
のデータをエクスポートできます。例: