LoginSignup
14
2

More than 5 years have passed since last update.

react-bootstrap-tableでSort Indicatorが表示されないなど

Posted at

現状、最新のreact-bootstrap-table(v4系統)で、Sort Indicator(画像のソート矢印)が表示されない場合など、何か挙動がおかしい時は、以下の様にversionというpropsに4を渡してみると治る可能性があります。

スクリーンショット 2017-11-20 12.41.25.png

<BootstrapTable
  ref='table'
  data={datas}
  version="4"
>
  <TableHeaderColumn
    dataField='id'
  >id</TableHeaderColumn>
  ...
  <TableHeaderColumn
    dataField='price'
   >Price</TableHeaderColumn>
</BootstrapTable>
14
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
2