this.table.getTableConfiguration().setExporting(true);
this.table.getTableConfiguration().setCurrentExportFormat(currentExportType);
try {
// Call the export delegate
ExportDelegate exportDelegate = new ExportDelegate(table, request);
exportDelegate.prepareExport();
} catch (ExportException e) {
logger.error("Something went wront with the Dandelion export configuration.");
throw new JspException(e);
}