Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CSV Export results in semi-colon delimited file #24

Open
b2point0h opened this issue Oct 8, 2021 · 0 comments
Open

CSV Export results in semi-colon delimited file #24

b2point0h opened this issue Oct 8, 2021 · 0 comments

Comments

@b2point0h
Copy link

b2point0h commented Oct 8, 2021

When exporting to CSV, the file that is produced is in the incorrect format. It exports as semi-colon delimited.

Screen Shot 2021-10-08 at 13 42 25

"react-data-table-component-extensions": "^1.5.2"

return (
    <DataTableExtensions
      filter={false}
      print={false}
      exportHeaders={true}
      {...tableData}
    >
    <div className="mt-2">
    <DataTable
      columns={columns}
      data={cases.caseList}
      progressPending={pageLoading || state.casesLoading}
      progressComponent={<div className="d-flex justify-content-center p-5"><CircularProgress /></div>}
      pagination
      paginationServer
      paginationDefaultPage={cases.pageNumber}
      paginationTotalRows={cases.totalCases}
      paginationPerPage={cases.casesPerPage}
      paginationRowsPerPageOptions={[5,10,15,20,30]}
      onChangeRowsPerPage={handlePerRowsChange}
      onChangePage={fetchCases}
      persistTableHead
    />
    </div>
    </DataTableExtensions>
  )

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant