-
8 May 2008 11:16 AM #41
Well I tried your js file with the example array grid. While I receive no errors now in gnumeric on the Linux side, it shows up with XML tags in the columns (see below).
When I open this up in Excel 2000, it shows no data at all. If I open it up in notepad, I see all the tags which is good and the data, so I know the data is there. I attached a copy of this below.
-
8 May 2008 12:02 PM #42
-
8 May 2008 12:08 PM #43
-
9 May 2008 11:12 AM #44
It's OK. I saw your notepad.txt. It's looking good. I attached screenshot to this letter. It's your report but with my remark in first row - you should remove appropriate line in ExportToExcel.js. Please use search with "SEBN UA" parameter.
-
9 May 2008 11:35 AM #45
If you have Office 2000, Office XP or Office 2003, you can install the Compatibility Pack which will enable you to read and write the new Office 2007 XML based formats.
Download link is here: Compatibility Pack
-
10 May 2008 5:51 AM #46
-
13 May 2008 2:42 AM #47
Bag
Bag
When unloading datetime fields detected a problem. No time to file excel. To address this problem need to change a few lines:
Code:'<ss:Style ss:Parent="odd" ss:ID="odddate">' + '<ss:NumberFormat ss:Format="dd/mm/yy\ h:mm;@" />' + '</ss:Style>' + '<ss:Style ss:Parent="even" ss:ID="evenint">' + '<ss:NumberFormat ss:Format="0" />' + '</ss:Style>' + if (cellType[k] == 'DateTime') { t += v.format('Y-m-d\\TH:i: s.000'); // no space betwen i: s } else { t += v; }Last edited by mystix; 13 May 2008 at 7:16 PM. Reason: use [code][/code] tags!
-
13 May 2008 3:10 PM #48
-
14 May 2008 3:33 AM #49
-
23 May 2008 1:38 AM #50
Hi Animal,
in my grid's ColumnModel I have a CheckBoxSelectionModel with no DataIndex.
How do I ignore this column in the export?
thx



Reply With Quote
I should have Wiki'd the format for Excel. Thanks for the response which looks to be the reason.