You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Below code is working fine in Chrome, unable to download excel in Firefox and IE:
<script language="text/javascript">
AJS.$(document).ready(function() {
console.log("Hello I am abc");
exportToExcel();
});
function exportToExcel(){
var uri = 'data:application/vnd.ms-excel;base64,';
var template = '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><head><!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet><x:Name>{worksheet}</x:Name><x:WorksheetOptions><x:DisplayGridlines/></x:WorksheetOptions></x:ExcelWorksheet></x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]--></head><body><table>{table}</table></body></html>';
var base64 = function(s) {
return window.btoa(unescape(encodeURIComponent(s)))
};
var format = function(s, c) {
return s.replace(/{(\w+)}/g, function(m, p) {
return c[p];
})
};
var table1 = '<table>';
AJS.$('#customfieldmodule .property-list li').each(function() {
var temp = this.innerText;
console.log(temp);
var res1 = temp.substr(0,temp.indexOf(':'));
var res2 = temp.substr(temp.indexOf(':')+1);
table1 += '<td>';
table1 += res1;
table1 += '<br>';
table1 +=res2;
table1 += '</td>';
})
table1 += '</table>';
var issueKey = AJS.$("meta[name='ajs-issue-key']").attr("content");
var fileName = issueKey + ".xls";
var ctx = {
worksheet : issueKey,
table : table1
}
var link = document.createElement("a");
link.download = fileName;
link.href = uri + base64(format(template, ctx));
link.click();
}
</script>
Need Help!!
Added the link element,
document.body.appendChild(link);
Now able to download excel in firefox however still unable to download excel in IE.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.