I’m trying to use the export feature and it’s working fine in our targeted browsers except for IE8.
It throws a JavaScript error in L191:9. This is the file:
export.dhtmlx.com/gantt/api.js
[code] gantt._serialize_columns = function(){
gantt.export = true;
//^here
var columns = [];
var cols = gantt.config.columns;
[/code]
It appears IE8 is finicky about the use of “export” as a reserved keyword. The same error occurs even on the official demo page:
docs.dhtmlx.com/gantt/samples/08 … xport.html
What should we do? Can this property be simply renamed in a local modified version, with no other side-effects outside of the export plugin? Is this even allowed?