Skip to content

Instantly share code, notes, and snippets.

@AllenFang
Last active February 19, 2017 08:00
Show Gist options
  • Select an option

  • Save AllenFang/210ecca380a5613ae8a630ec1adae288 to your computer and use it in GitHub Desktop.

Select an option

Save AllenFang/210ecca380a5613ae8a630ec1adae288 to your computer and use it in GitHub Desktop.
Vertical scroll table
class ScrollTable extends React.Component {
render() {
return (
<BootstrapTable data={ products } height='120' scrollTop={ 'Bottom' }> <!-- Available value is Top, Bottom or any number value -->
<TableHeaderColumn dataField='id' isKey>Product ID</TableHeaderColumn>
<TableHeaderColumn dataField='name'>Product Name</TableHeaderColumn>
<TableHeaderColumn dataField='price'>Product Price</TableHeaderColumn>
</BootstrapTable>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment