(rowData, index)
| 23 | } |
| 24 | |
| 25 | renderFrozenRow(rowData, index) { |
| 26 | const { columns, rowHeight, rowRenderer } = this.props; |
| 27 | const style = { width: '100%', height: rowHeight }; |
| 28 | // for frozen row the `rowIndex` is negative |
| 29 | const rowIndex = -index - 1; |
| 30 | return rowRenderer({ style, columns, rowData, rowIndex }); |
| 31 | } |
| 32 | |
| 33 | render() { |
| 34 | const { className, width, height, rowWidth, headerHeight, frozenData } = this.props; |
nothing calls this directly
no test coverage detected