We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c58e244 commit aa4dfc3Copy full SHA for aa4dfc3
src/BootstrapTable.js
@@ -662,7 +662,10 @@ class BootstrapTable extends Component {
662
663
const keys = [];
664
this.props.children.map(function(column) {
665
- if (column.props.hidden === false || column.props.export === true) {
+ console.log(column.props.export);
666
+ if (column.props.export === true ||
667
+ (typeof column.props.export === 'undefined' &&
668
+ column.props.hidden === false)) {
669
keys.push({
670
field: column.props.dataField,
671
format: column.props.csvFormat,
0 commit comments