Hello,
When I use the Silverlight 'Export to Excel' funcitonality, I am able to export the basic data
But, when I format that data (such as using Group By functionality) and then export, my excel worksheet contains no data, only the Column headers.
Is this a known issue or am I doing something incorrectly?
Thank you, --Chris
Hello Chris,
Your solution work perfect. But
What do we have to do in order to extract the header column with group???
Thanks.
Gilles P.
Could you try with the project that is proposed as a solution for the following thread:
http://community.infragistics.com/forums/p/40720/227955.aspx#227955
Thanks,George
I am also having the same problem in large rows.
And yes George, first line is exactly like yours.
Hi, I tried 1346.excexp.zip example and change line
for
(int i = 0; i < 9; i++) to
for(int i=0;i<4000;i++)
testing for large data. But it gives errorDialogs must be user-initiated.
at line
bool
? showDialog = dialog.ShowDialog();
Same isssue gets in my application
So please anybody give solution for that.
Thanks,
Nandu
Could you check if the first line of your Click event handler is :
SaveFileDialog dialog = new SaveFileDialog { Filter = "Excel files|*.xls", DefaultExt = "xls" };bool?