Is it possible to export multiple grid, more than two, in a single sheet in excel export? The documentation is for two grids but I want to create a single excel file with one sheet which needs to have multiple grid/table. I have a few of these tables.
the working eg
if (gridRef) {
const appendExcelExportProperties = {
multipleExport: { type: 'AppendToSheet', blankRows: 2 },
};
const masterGridRefExport = gridRef.masterGrid.excelExport(
appendExcelExportProperties,
true,
);
masterGridRefExport.then((fData) => {
if (gridRef.addressGrid) {
gridRef.addressGrid.excelExport(appendExcelExportProperties, false, fData);
}
});
}
My required format is something like this