Saturday, 25 April 2020

Angular 2+ download Excel File

      
1. Download Excel
====================================================

      
let link = document.createElement('a');
      link.setAttribute('type', 'hidden');
      link.href = 'assets/Sample_MRL_Withoutkitno.xlsx';
      link.download = 'Sample_MRL_Withoutkitno.xlsx';
      document.body.appendChild(link);
      link.click();

No comments:

Post a Comment