1
でクリックしたときに、私は、ブートストラップ、テーブルの特定の行をクリックしたときに、私は、各セルの値を取得することができますどのような方法があります行のセル値を取得します。他の機能では、その行のすべてのセルの値にアクセスしたいと思います。現在、私のrowClickイベントは、クリックされた行のインデックスを渡します。私のテーブルはここにありますブートストラップテーブル
<Table className='flags-table' id="flags-table" responsive hover>
<thead>
<tr>
<th></th>
<th> Time In</th>
<th> Time Out</th>
<th> Type</th>
<th> Category</th>
</tr>
</thead>
<tbody>
{
this.props.tag_fetch_reducer.tags.map((x, i) => (
<tr className={i === this.props.marker_reached_reducer.index ? 'selected' : ''} key={i} onClick={this.handleRowClick.bind(this, i)}>
<td>
<div className='red-box'></div>
</td>
<td> {this.secondsToHms(x.time)} </td>
<td> {this.secondsToHms(x.stopTime)} </td>
<td> {x.tagname} </td>
<td> {x.category}</td>
</tr>
))
}
</tbody>
</Table>