React Data GridExcel Export - HyperlinksEnterprise
This section describes how to insert hyperlinks in the cells of the exported Excel file.
You can insert hyperlinks
in the cells of the exported Excel file by outputting an Excel formula containing a Hyperlink function with a URL value you provide. The code below inserts hyperlinks in the Excel export file for all values in the URL column.
const columnDefs = [
{ field: 'company' },
{
field: 'url',
cellClass: 'hyperlinks' // references excel style
}
];
const defaultExcelExportParams = {
autoConvertFormulas: true,
processCellCallback: params => {
const field = params.column.getColDef().field;
return field === 'url' ? `=HYPERLINK("${params.value}")` : params.value;
}
};
const excelStyles = [
{
id: 'hyperlinks',
font: {
underline: 'Single',
color: '#358ccb'
}
}
];
<AgGridReact
columnDefs={columnDefs}
defaultExcelExportParams={defaultExcelExportParams}
excelStyles={excelStyles}
>
</AgGridReact>
Note the following:
- The URL column of the grid below has URL values.
- In the exported Excel file, the URL column has active links for these URL values.
Continue to the next section: Master Detail.