i am trying to export the records to the excel. Here i have more than 3000 records. When i have below 3000 records it was exporting and saving. But if i have more than 3000 records i am facing the issue. while saving Failed - network error is coming.
Used below code to export the records to excel.
function SaveContents(element, filename) {
if (window.Blob && window.navigator.msSaveOrOpenBlob) {
var blob = new Blob([element], {
type: 'data:application/vnd.ms-excel'
});
window.navigator.msSaveBlob(blob, filename + '.xls');
} else {
var a = document.createElement('a');
document.body.appendChild(a);
a.href = 'data:application/vnd.ms-excel;charset=utf-8,%EF%BB%BF' + encodeURIComponent(element);
a.download = filename + ".xls";
a.click();
}}
Please give a solution to this.