views:

84

answers:

2

I need to export my EditorGridPanel grid data to excel without sending any data to server-side, cross browser and cross platform solution that will work in ie6 and ie7. Any pure JavaScript solution is good as well!
So far i have found only data URI solution which is great but ie supports it only from 8-th version. Also there is a possibility to export through ActiveX component but it is not what i want since it makes my app depended to Windows and MSOffice.

Can you recommend me any solution ?

A: 

You could export to csv and then import that file into Excel , Open Office or Numbers?

Graeme Smyth
+2  A: 

Well after a wile of thinking i understood that this question is stupid because due to sandbox policy of js there is no possibility to export it directly from js. As i said earlier i found some partial ways to do that: ActiveX export and Data URI scheme

Jay