I'm finding that all my table data is being exported to excel as "String" type in the xml file...
<Cell><Data ss:Type="String">980</Data></Cell>
I'd like columns like this one...
{ title: "Total", cls: 'bold_column', minWidth: 75, dataIndx: "total", dataType: "integer", align:"center", editable: false},
...to export as a number type for Excel. I thought that the dataType parameter would do it but it didn't change the export. Have I overlooked something?
Thanks.