SMART datagrid v.1 > Classes > DataOutputOptions
The string which will replace carriage return ('\r') character when exporting data set by GridDataSet.exportToCsv.
If do not specify, carriage return will be added the same. You can set line feed ('\n') substitution string by lfText.
Defaults to undefined.
var s = dsMain.exportToCsv({
crText: '\\r',
lfText: '\\n'
});
DataLudi.saveTextToFile(s, 'dataludidata.csv');