Guest User

Untitled

a guest
Nov 22nd, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <img id="excelimg" alt=Excel onclick="javascript:toExcel()" src="excel.BMP"/>
  2.  
  3. function toExcel() {
  4. document.getElementById("excelimg").disabled=true;
  5. document.getElementById("excelimg").alt="Please wait till your previous request is processed!";
  6. document.getElementById("excelimg").style.cursor="default";
  7. var excel="excel";
  8. var location1="<%= baseUrl %>Print?"+param;
  9. excelWindow = window.open(location1,"_excel","height=400, width=600,scrollbars=yes,status=1, menubar=1,toolbar=0,menubar=1, resizable=yes");
  10. excelWindow.focus();
  11. excelWindow.attachEvent("onbeforeunload",disableExcelIcon);
  12. }
  13. function disableExcelIcon(){
  14. document.getElementById("excelimg").disabled=false;
  15. document.getElementById("excelimg").style.cursor="pointer";
  16. document.getElementById("excelimg").alt="Excel";
  17. }
Add Comment
Please, Sign In to add comment