error with serializeToCSV(true)

See previous message. Forgot to fillin in email adsress

file headings are 1 out as the ids are exported
If you need not ID in export, just add the next line
grid.enableCSVAutoID(true);

>> also I thought that serializeToCSV(true) exported the display values rather that html (links etc)
It is known issue with latest build. As fast solution you can use the next line for the same result
grid._strictText = true;

grid.enableCSVAutoID(true); fixes header problem but
grid._strictText = true; now changes the output to the url of link cells rather than the display value

If you need to have the labels of links only, add next line before grid’s init.

eXcell_link.prototype.getTitle = eXcell_link.prototype.getContent;