react-data-export
react-data-export copied to clipboard
React data export not working in web view
React export excel not working on web view(android) but working on the browser. My code is given below.
<ExcelFile element={<button className={'btn btn-primary btn-block'}>Excel</button>}
filename={props.filters.reportName} fileExtension={'xlsx'}>
<ExcelSheet dataSet={props.dataSetExcel} name="Organization"/>
</ExcelFile>
Normally download is working but downloading through webview (android) is not working.
Need to download using :
const ExcelFile = ReactExport.ExcelFile;
const ExcelSheet = ReactExport.ExcelFile.ExcelSheet;