[flexcoders] Re: Flex 3 - Export to Microsoft Excel?

2008-12-02 Thread jim.abbott45
I've successfully implemented two different approaches. The first approach just puts the data for Excel _on the clipboard_. It also uses Microsoft's uber-funky XML schemas to control the formatting of the resulting spread-sheet. This approach works nicely for both FF and IE, in my experience

Re: [flexcoders] Re: Flex 3 - Export to Microsoft Excel?

2008-12-02 Thread Howard Fore
A third option posts HTML Table formatted data (in a new browser window) to a server-side script (ColdFusion in my case but ASP/JSP/PHP should work as well) which then reflects it to the browser with the MIME type set to one of the myriad Excel versions. Then the browser handles it as needed (save

[flexcoders] Re: Flex 3 - Export to Microsoft Excel?

2008-12-01 Thread nathanpdaniel
http://code.google.com/p/as3xls/ --- In flexcoders@yahoogroups.com, sailorsea21 [EMAIL PROTECTED] wrote: Hi everyone, is it possible to export to Excel? If I have a chart or a datagrid, is it possible to export it to Microsoft Excel? Thanks. -David.

[flexcoders] Re: Flex 3 - Export to Microsoft Excel?

2008-12-01 Thread aphexyuri
I just completed a project with this as a feature. I looked at various options, and using server-sider excel generation worked out to be the most powerful...providing you have BASIC PHP knowledge, and a hosting option / local server with PHP pear. I used a combination of AMFPHP and PEAR

[flexcoders] Re: Flex 3 - Export to Microsoft Excel?

2008-12-01 Thread oneworld95
Take a look at this client-side Flex solution: http://code.google.com/p/as3xls/ -Alex --- In flexcoders@yahoogroups.com, sailorsea21 [EMAIL PROTECTED] wrote: Hi everyone, is it possible to export to Excel? If I have a chart or a datagrid, is it possible to export it to Microsoft Excel?