vote up 2 vote down star
1

How do I export data in my datagrid to an Excel file in Flex?

Can anyone provide some examples for that? I am browsing but couldn't find out a single example of that kind.

EDIT

Browsed a lot and found out how to convert datagrid data to csv format. Now How to convert that to excel? Is there a way to do that without using any server script ? Can't it be done in Flex alone?

flag

65% accept rate
What's your server-side technology? – Mike Sickler Nov 2 at 13:45
using java Servlets in eclipse – Angeline Aarthi Nov 3 at 7:26

4 Answers

vote up 2 vote down

There is as3xls for you to write xls file. It only support a single sheet(but I think that's fine).

But I think using csv or html as stated by @susichan and @Rafal Ziolkowski will be more simple if you do not need to use excel functions (like cell formula).

Oh, and there is csvlib for writing csv. For html, do it like writing XML will be fine.

link|flag
vote up 1 vote down

If you have a Java servlet back-end you can use a servlet to output the file.

My only Flex-only idea was to output the CSV data to a popup with a textarea that could be copied and pasted into a file by the user.

link|flag
vote up 1 vote down

Excel reads the HTML table as a kind of spreadsheet. Just read the grid row by row, column by column and produce a set of HTML table cells and produce a file named whatever.xls.

link|flag
I have created it in the form of html tables. How to produce an excel file? – Angeline Aarthi Nov 3 at 9:11
vote up 0 vote down

here is your answer

http://learnflexair.wordpress.com/category/uncategorized/air/

link|flag

Your Answer

Get an OpenID
or

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