Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have created a javascript/HTML table. How to download this and store in excel? Any code will be of help.

This is my code for creating the table:

function populateTable(results) {
                var tableDiv = document.getElementById('aDiv');
                var config = { columns:
                                                [{key: 'FormattedID', width: 100},
                                                 {key: 'Name'},
                                                 {key: 'Type'},
                                                 {key: 'Method'},
                                                 {key: 'Risk'},
                                                 {key: 'Priority'}] };
                var table = new rally.sdk.ui.Table(config);
                table.addRows(results.testcases);
                table.display(tableDiv);
                alert (results.testcases.length);

           }
           queryConfig = {
                type : 'testcase',
                key  : 'testcases',
                fetch: 'true'
            };

Thanks

share|improve this question
You probably store your table in results.testcases object. Are you getting it from a server? – Bashir Magomedov Aug 16 '11 at 9:42
Are you looking for an Excel writer written in client-side JavaScript? – Álvaro G. Vicario Aug 16 '11 at 10:07

1 Answer

You should have a look at TabletoCSV jquery plugin and to the threads that were discussed about it on StackOverflow: jQuery Table to CSV export and Export to csv in jQuery

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.