Click here to Skip to main content
15,887,585 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi Sir/Madam,

When i trying to export the excel file for using HTML Table that time not showing the
Dropdownlist value and Numeric text box value. but other textbox values are fine. It Showing the DROPDownlist Image in excel but we need to show the dropdownlist value only.
So how to solve this Issue.. Give me one solution..

JavaScript
function ExportTableExcel() {
        SaveExcel('fabricDepartment','Table','Fabric Department');///(table id,table name ,download file name)
    }

    var SaveExcel = (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><!--[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>'
            , 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,filename) {
            if (!table.nodeType) table = document.getElementById(table)
            var modifiedTable = $('<table/>').html(table.innerHTML);
            modifiedTable.find('.hdnpdf').remove();  ///(coloumn id r coloumn class name)
            var ctx = { worksheet: name || 'Worksheet', table: modifiedTable.html()}
            var link = document.createElement("a3");
            link.download = filename;
            link.href = uri + base64(format(template, ctx));
            link.click();
        }

    })()
Posted
Comments
Sinisa Hajnal 18-Jan-16 5:56am    
What have you tried? For example, did you try setting cell format to text?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900