* Get the total height of all rows, including expanded rows.
()
| 182 | * Get the total height of all rows, including expanded rows. |
| 183 | */ |
| 184 | getTotalRowsHeight() { |
| 185 | const { rowHeight, estimatedRowHeight } = this.props; |
| 186 | |
| 187 | if (estimatedRowHeight) { |
| 188 | return this.table ? this.table.getTotalRowsHeight() : this._data.length * estimatedRowHeight; |
| 189 | } |
| 190 | return this._data.length * rowHeight; |
| 191 | } |
| 192 | |
| 193 | /** |
| 194 | * Get the total width of all columns. |
no outgoing calls
no test coverage detected