Expands this data node. Implemented for TreeKeyManagerItem.
()
| 1458 | |
| 1459 | /** Expands this data node. Implemented for TreeKeyManagerItem. */ |
| 1460 | expand(): void { |
| 1461 | if (this.isExpandable) { |
| 1462 | this._tree.expand(this._data); |
| 1463 | } |
| 1464 | } |
| 1465 | |
| 1466 | /** Makes the node focusable. Implemented for TreeKeyManagerItem. */ |
| 1467 | makeFocusable(): void { |
no test coverage detected