(e: FocusEvent, forceSelfFocus = false)
| 268 | } |
| 269 | |
| 270 | _onfocusin(e: FocusEvent, forceSelfFocus = false) { |
| 271 | if (forceSelfFocus || this._activeElementHasAttribute("ui5-table-cell")) { |
| 272 | this.root.focus(); |
| 273 | this.activate(); |
| 274 | } |
| 275 | |
| 276 | this.fireDecoratorEvent("_focused"); |
| 277 | } |
| 278 | |
| 279 | _onrowclick(e: MouseEvent) { |
| 280 | const checkboxPressed = (e.target as HTMLElement).classList.contains("ui5-multi-select-checkbox"); |
no test coverage detected