Is there a way I can export my Silverlight DataGrid data to excel or csv?
I searched the web but can't find any examples!
Thanks a lot
|
Is there a way I can export my Silverlight DataGrid data to excel or csv? I searched the web but can't find any examples! Thanks a lot | ||||
|
feedback
|
|
Silverlight 3 changes the answer to this question because it gives the ability of the user to create a file on the user's desktop in a location that they specify. I adapted the code submitted by DaniCE, split things into a few methods for readability and am using a loosely defined CSV format that Excel should recognize.
| |||||||||||||
feedback
|
|
I have found this using the clipboard. To make the code generic you can modify the first example to read the column bindings and apply they to the data using reflection:
of course, it only works when the path of the binding is the property name. For more advanced paths you have to apply the binding to the data (I suppose that would be a better solution, but I'm not sure now how to do this). | ||||
|
feedback
|
|
I don't think Silverlight offers a way to download files. You can add a button to your app that calls a URL- i.e. http://www.mysite.com/generateexcelfile.aspx. Include as Querystring values the parameters used to generate the data being displayed in your Silverlight app, run your query and use your favorite Excel file generation component to generate the file on the fly. Redirect to it and it will download to the users' system. | |||||
feedback
|
|
I know this is an old post but it did help me. I have done some edits to make it work with silverlight 4, converts and excel. I wanted the fast export so I first use CSV then open it with excel. This code works silverlight web and oob elevated trust. In Web will not open in excel.
| |||||
feedback
|
|
Off the top of my head I would say you can add the export button using a Something like...
Or using the binding information as described by DaniCE. | |||
|
feedback
|
|
Check Ryan's solution out. Looks good, can't vouch for it though because I just found it. Ryan does what DLL above requested. http://www.rshelby.com/post/exporting-data-from-silverilght-datagrid-to-excel.aspx David in Dakota's solution above looks a little easier to implement, and there is always the redirect to a classic asp.net page with a data grid on it and the content type set to excel, but then you have more code to support and that way may not work for out of browser solutions that are offline (actually won't work). Anyway, this is a common task. I hope some folks here or at Microsoft come up with a Mort plug and play solution :) I found an extension method for CVS export from a Silverlight datagrid- http://www.codeproject.com/KB/silverlight/SilverlightDataGridExport.aspx It has the potential to be plug and play, but I had to tweek it just a little bit to get it to work with datagrids with item datasources (see comments in the post). Someone brighter and more experienced than myself should be able to tweak to perfection. Check it out, it should get you close to what you need. | ||||
|
feedback
|
|
Those solutions didn't work for me, so I modified them to one that worked. (My solution doesn't require quotes around fields, so I left out the FormatCSVField function)
| |||
|
feedback
|
|
Here's a nice approach that worked for me http://forums.silverlight.net/forums/p/179321/404357.aspx | |||
|
feedback
|
|
Both solutions contain
which fails if the selected file is open (in Excel): "The process cannot access the file '...' because it is being used by another process." Putting this part in a try catch block should catch the exception, and it does, but afterwards the framework is still trying to close a stream: This operation can only occur on the UI Thread. at System.Windows.Hosting.NativeHost.VerifyThread() at System.Windows.SaveFileStream.Dispose(Boolean disposing) This causes my Silverlight app to crash. Is this a bug in Silverlight? | |||||||||
feedback
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.