MCPcopy Create free account
hub / github.com/UI5/webcomponents / getRowByKey

Function getRowByKey

packages/main/src/TableSelectionBase.ts:143–147  ·  view source on GitHub ↗

* Returns the table row instance for the given row key. * * @param rowKey The row key * @public

(rowKey: string)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 1

getRowKeyMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…