I want to display Export Excel with header ,Footer,image and Execution date using datatable
I want to display Export Excel with header ,Footer,image and Execution date using datatable
ajit Kumar
Posts: 2Questions: 1Answers: 0
Plz any body help me i m trying last one week but did'nt got any solution.
This discussion has been closed.
Answers
I want to display Execution Date in Excel........
My Code is...
var tableToExcel = (function () {
var uri = 'data:application/vnd.ms-excel;base64,'
, 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></head><body>
</body></html>'
, base64 = function (s) { return window.btoa(unescape(encodeURIComponent(s))) }
, format = function (s, c) { return s.replace(/{(\w+)}/g, function (m, p) { return c[p]; }) }
return function (table, name) {
I'm afraid you'll need to clarify your question What execution date? I don't see any date code in the code you pasted above.
Allan