* Returns the table row instance for the given row key. * * @param rowKey The row key * @public
(rowKey: string)
| 141 | * @public |
| 142 | */ |
| 143 | getRowByKey(rowKey: string): TableRow | undefined { |
| 144 | if (this._table && rowKey) { |
| 145 | return this._table.rows.find(row => this.getRowKey(row) === rowKey); |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | /** |
| 150 | * Determines whether the specified table row is currently selected. |
nothing calls this directly
no test coverage detected
searching dependent graphs…