Hello,
I'm trying export data from grid to excel. It works but a field "bank account" (eg. 12345678901234567890123456) in excel: 1.23E....
So, I don't see account number.
How can I resolve this problem?
My code:
Grid's columns are declarative from xml.
I'm trying export data from grid to excel. It works but a field "bank account" (eg. 12345678901234567890123456) in excel: 1.23E....
So, I don't see account number.
How can I resolve this problem?
My code:
radgrid.CurrentPageIndex = 0; |
radgrid.ExportSettings.ExportOnlyData = true; |
radgrid.ExportSettings.IgnorePaging = true; |
radgrid.ExportSettings.OpenInNewWindow = true; |
radgrid.ExportSettings.FileName = "Export"; |