How to export ultragrid to csv file. I know how to export to word, pdf, and excel. Can you show me example of exporting grid to csv file.
Hi,
I just wanted to know if you were able to solve your issue based on our suggestions or you still need help?
Just let me know.
Thank you.
hi, I wanted to check if this feature has been implemented in any recent version of your ultra product.
Recently we had to export into csv from the ultragrid that had 3000 columns with 1200 rows, and our app was going out of memory. I investigated and the ultimate culprit was "gridrow.Cells[z].Value.ToString()".
When I found out that this was the sole statement responsible for memory leaks, i just took a reference to the DataTable from the grid's DataSource property, and used that for export, and tested with 3000 columns with 10000 rows, no mem leaks.