i'm getting the row numbers of the selected items just fine. But how to get the data related to these row numbers?
{this.tableData().map( (row, index) => (
<TableRow key={row._id} value={row.selected} >
<TableRowColumn>{row._id}</TableRowColumn>
<TableRowColumn>unknown</TableRowColumn>
<TableRowColumn>{row.status && row.status.callDetails && row.status.callDetails.orgURL}</TableRowColumn>
<TableRowColumn> <StatusButton statusOnline={row.status && row.status.online} inCall={row.status} /> </TableRowColumn>
</TableRow>
))}
i hoped to define the row numbers my with key={row._id}
but the default keys 0,1,2,3,4,5 are used instead of something like TcGmekfvsPxsga5B5 . How to fix this?
@grinono
https://github.com/callemall/material-ui#note
https://github.com/callemall/material-ui/blob/master/CONTRIBUTING.md#asking-questions
https://github.com/callemall/material-ui/pull/4192/files#diff-1a1c3dd142f76a5fad803a0c52839881R11