I'm using smartGWT 5.0p version.
I use the example from showcase to export data in CSV file.
Is any way to remove quotes from exported CSV?
My CSV export looks like:
"ID","NAME","LASTNAME","AGE"
"1","name1","lastname1","31"
"2","name2","lastname2","35"
but I want to look like:
ID,NAME,LASTNAME,AGE
1,name1,lastname1,31
2,name2,lastname2,35
I use the example from showcase to export data in CSV file.
Is any way to remove quotes from exported CSV?
My CSV export looks like:
"ID","NAME","LASTNAME","AGE"
"1","name1","lastname1","31"
"2","name2","lastname2","35"
but I want to look like:
ID,NAME,LASTNAME,AGE
1,name1,lastname1,31
2,name2,lastname2,35
Comment