You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using this package in my ReactJS code with material-table. In the exported CSV, all values are enclosed within double quotes. (see below)
All I want is to export the table as a tab delimited values and I DON'T want these values enclosed in double quotes. If I open the exported file and save as tab delimited file, I can see MS-Excel is removing double quotes.
I am using this package in my ReactJS code with material-table. In the exported CSV, all values are enclosed within double quotes. (see below)
All I want is to export the table as a tab delimited values and I DON'T want these values enclosed in double quotes. If I open the exported file and save as tab delimited file, I can see MS-Excel is removing double quotes.
"Title","First Name","Last Name","Address Line 1","Address Line 2","City","State","PostCode","Phone","Mobile","Fax","Email","Company","Order Number","Primary Campus","Category","Permit Type","Receipt Number","Staff\Student ID","Rego No","Make","Alt Rego No","Alt Make","Validations Errors","Warnings"
"","Greg Turnbull","Odgers","14 Empire St","","Poke","AB","C2750","","90909090","","[email protected]","","897878723","Hando",,"General Half Year ","WEB181224","47","8987723","yywte","Mazda 3","iouuu","",
"","Bob","Gaunder","222 CAT drive","","Nona","CT","D2126","","8977776","","[email protected]","","89898","Jacksonville",,"General Annual ","WEB181226","94","787233","FFR782","nissan","","",
<MaterialTable
title="Validation Results"
icons={tableIcons}
columns={columns}
data={applicationList}
options={{
exportButton: true,
exportAllData: true,
exportDelimiter: " ",
exportCsv: (columns, applicationList) => {
const repoColumns = columns.filter(columnDef => {
return !columnDef.hidden && columnDef.field && columnDef.export !== false;
});
The text was updated successfully, but these errors were encountered: