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