We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ecdbf6 commit ae34c44Copy full SHA for ae34c44
packages/react-bootstrap-table2-example/examples/csv/custom-csv.js
@@ -40,7 +40,13 @@ const columns = [{
40
keyField="id"
41
data={ products }
42
columns={ columns }
43
- exportCSV
+ exportCSV={ {
44
+ fileName: 'custom.csv',
45
+ separator: '|',
46
+ ignoreHeader: true,
47
+ noAutoBOM: false,
48
+ blobType: 'text/csv;charset=ansi'
49
+ } }
50
>
51
{
52
props => (
@@ -64,7 +70,8 @@ export default () => (
64
70
fileName: 'custom.csv',
65
71
separator: '|',
66
72
ignoreHeader: true,
67
- noAutoBOM: false
73
74
68
75
} }
69
76
77
0 commit comments