Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Tìm hiểu thêm

Excel file not containing the whole html table when downloading

  • 1 trả lời
  • 1 gặp vấn đề này
  • 1 lượt xem
  • Trả lời mới nhất được viết bởi Shadow110

more options

This is the code I am using in my jquery function

if (browser == "Firefox") {

               ////getting data from our div that contains the HTML table
               var data_type = 'data:application/vnd.ms-excel';
               var table_div = document.getElementById('div_Previewhtml');
               var table_html = table_div.outerHTML.replace(/ /g, '%20');
               var a = document.createElement('a');
               document.body.appendChild(a);
               ////setting the file name
               a.download = "Change" + MasterId + '.xls';
               a.href = data_type + ', ' + table_html;
               ////triggering the function
               a.click();
           }

But output excel is only half generated, what is wrong?

This is the code I am using in my jquery function if (browser == "Firefox") { ////getting data from our div that contains the HTML table var data_type = 'data:application/vnd.ms-excel'; var table_div = document.getElementById('div_Previewhtml'); var table_html = table_div.outerHTML.replace(/ /g, '%20'); var a = document.createElement('a'); document.body.appendChild(a); ////setting the file name a.download = "Change" + MasterId + '.xls'; a.href = data_type + ', ' + table_html; ////triggering the function a.click(); } But output excel is only half generated, what is wrong?

Tất cả các câu trả lời (1)

more options

HI, no idea : Since you are compiling code please see Stackoverflow.com for help with your code or google into github. This is beyond what Firefox Volunteer Support does.

Please let us know if this solved your issue or if need further assistance.