There is an issue with exporting a grid that contains two and three datas in some cells to a CSV file. The columns for these data do not get exported, leading me to believe that there is a need for special code implementation when writing the columnKeys. Here's the interface I am working with: https://i.sstatic.net/bPolq.png
I have attempted using the append (+) operator without success. Below is a snippet of my code:
import { Component, OnInit } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { Grid, GridApi } from 'ag-grid-community';
import { AgGridAngular } from 'ag-grid-angular';
import { DealsService } from '../services/deals.service';
import * as moment from 'moment';
@Component({
selector: 'app-deals',
templateUrl: './deals.component.html',
styleUrls: './deals.component.scss'
})
export class DealsComponent implements OnInit {
// Rest of the Angular component code here
}
Your assistance on this matter would be highly appreciated. Thank you!