Skip to content

Commit

Permalink
add example for hide row on expanding
Browse files Browse the repository at this point in the history
  • Loading branch information
AllenFang committed Dec 12, 2017
1 parent 07038fc commit c54c54b
Show file tree
Hide file tree
Showing 2 changed files with 92 additions and 0 deletions.
5 changes: 5 additions & 0 deletions examples/js/expandRow/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import ExpandIndicator from './expand-indicator';
import CustomExpandClassName from './custom-expand-class';
import CustomExpandIndicator from './custom-expand-indicator';
import AutoCollapse from './auto-collapse';
import HideRowWhenExpanding from './hide-row-when-expanding';
import renderLinks from '../utils';

import { Col, Panel } from 'react-bootstrap';
Expand Down Expand Up @@ -65,6 +66,10 @@ class Demo extends React.Component {
{ renderLinks('expandRow/auto-collapse.js') }
<AutoCollapse/>
</Panel>
<Panel header={ 'Hide Row When Expanding' }>
{ renderLinks('expandRow/hide-row-when-expanding.js') }
<HideRowWhenExpanding/>
</Panel>
</Col>
);
}
Expand Down
87 changes: 87 additions & 0 deletions examples/js/expandRow/hide-row-when-expanding.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
/* eslint max-len: 0 */
import React from 'react';
import { BootstrapTable, TableHeaderColumn } from 'react-bootstrap-table';

const products = [];

function addProducts(quantity) {
const startId = products.length;
for (let i = 0; i < quantity; i++) {
const id = startId + i;
if (i < 3) {
products.push({
id: id,
name: 'Item name ' + id,
price: 2100 + i,
expand: [ {
fieldA: 'test1',
fieldB: (i + 1) * 99,
fieldC: (i + 1) * Math.random() * 100,
fieldD: '123eedd' + i
}, {
fieldA: 'test2',
fieldB: i * 99,
fieldC: i * Math.random() * 100,
fieldD: '123eedd' + i
} ]
});
} else {
products.push({
id: id,
name: 'Item name ' + id,
price: 2100 + i
});
}
}
}
addProducts(5);

class BSTable extends React.Component {
render() {
if (this.props.data) {
return (
<BootstrapTable data={ this.props.data }>
<TableHeaderColumn dataField='fieldA' isKey={ true }>Field A</TableHeaderColumn>
<TableHeaderColumn dataField='fieldB'>Field B</TableHeaderColumn>
<TableHeaderColumn dataField='fieldC'>Field C</TableHeaderColumn>
<TableHeaderColumn dataField='fieldD'>Field D</TableHeaderColumn>
</BootstrapTable>);
} else {
return (<p>?</p>);
}
}
}

export default class HideRowWhenExpanding extends React.Component {
constructor(props) {
super(props);
}

isExpandableRow(row) {
if (row.id < 4) return true;
else return false;
}

expandComponent(row) {
return (
<BSTable data={ row.expand } />
);
}

render() {
const options = {
hideRowOnExpand: true
};
return (
<BootstrapTable data={ products }
options={ options }
expandableRow={ this.isExpandableRow }
expandComponent={ this.expandComponent }
search>
<TableHeaderColumn dataField='id' isKey={ true }>Product ID</TableHeaderColumn>
<TableHeaderColumn dataField='name'>Product Name</TableHeaderColumn>
<TableHeaderColumn dataField='price'>Product Price</TableHeaderColumn>
</BootstrapTable>
);
}
}

0 comments on commit c54c54b

Please sign in to comment.