Column A not read in IE8 for a remote file #140
Labels
No Label
DBF
Dates
Defined Names
Features
Formula
HTML
Images
Infrastructure
Integration
International
ODS
Operations
Performance
PivotTables
Pro
Protection
Read Bug
SSF
SYLK
Style
Write Bug
good first issue
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: sheetjs/sheetjs#140
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hi,
When I test the ajax example in IE8, the column A is not read. I did some tests on my side with two different files, and I have the same behavior.
Any idea why?
Thanks
@Aymkdn can you share a screenshot of the view in IE8 as well as in chrome?
With IE8:
With Chrome:
@Aymkdn sorry for asking, since I'm not in front of a windows machine ATM, can you check http://oss.sheetjs.com/js-xls/ajax.html in IE8 and see if the same thing happens?
It doesn't work at all. There is an error "Object doesn't support this property or method".
This is due to :
function keys(o) { return Object.keys(o); }
Object.keys
doesn't exist for IE8.You might want to use a polyfill for it.
Or to call
<script src="//polyfill.io/"></script>
that will provide all available polyfill for the current browser.However, even with that, there is another error due to
Uint8Array
that doesn't exist with IE8 and there is no polyfill for that one...Not sure why GH didn't automatically close the issue, oh well