• ISSN (Online): 2319-8753
  • /
  • ISSN (Print): 2347-6710
devextreme download file

International Journal of Innovative Research in Science, Engineering and Technology


|ISSN Approved Journal | Impact factor: 8.699 | ESTD: 2012| Follows UGC CARE Journal Norms and Guidelines|


|Monthly, Peer-Reviewed, Refereed, Scholarly, Multidisciplinary and Open Access Journal|Impact factor 8.699 (Calculated by Google Scholar and Semantic Scholar| AI-Powered Research Tool| Indexing in all Major Database & Metadata, Citation Generator |Digital Object Identifier (DOI)|

Devextreme Verified Download File Instant

JavaScript/jQuery FileUploader API - DevExtreme - DevExpress

The most common "download" in DevExtreme is exporting UI component data to a local file. To enable this in the JavaScript DataGrid: : Set the export.enabled property to true . devextreme download file

: Use the onExporting event to trigger the download logic. var worksheet = workbook.addWorksheet('Main sheet')

$('#gridContainer').dxDataGrid({ export: { enabled: true }, onExporting: function(e) { var workbook = new ExcelJS.Workbook(); var worksheet = workbook.addWorksheet('Main sheet'); DevExpress.excelExporter.exportDataGrid({ component: e.component, worksheet: worksheet }).then(function() { workbook.xlsx.writeBuffer().then(function(buffer) { saveAs(new Blob([buffer], { type: 'application/octet-stream' }), 'DataGrid.xlsx'); }); }); } }); Use code with caution. 2. File Manager Downloads { type: 'application/octet-stream' })

devextreme download file