Handles click events for the combobox.
(event: PointerEvent)
| 182 | |
| 183 | /** Handles click events for the combobox. */ |
| 184 | onClick(event: PointerEvent) { |
| 185 | if (!this.disabled()) { |
| 186 | this.click().handle(event); |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | /** Handles focus in events for the combobox. */ |
| 191 | onFocusin() { |
no test coverage detected