MCPcopy Index your code
hub / github.com/UI5/webcomponents / _toggleRespPopover

Method _toggleRespPopover

packages/main/src/Select.ts:666–680  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

664 }
665
666 _toggleRespPopover() {
667 if (this.disabled || this.readonly) {
668 return;
669 }
670
671 this._iconPressed = true;
672
673 this.responsivePopover = this._respPopover();
674 if (this._isPickerOpen) {
675 this.responsivePopover.open = false;
676 } else {
677 this.responsivePopover.opener = this;
678 this.responsivePopover.open = true;
679 }
680 }
681
682 _onkeydown(e: KeyboardEvent) {
683 const isTab = (isTabNext(e) || isTabPrevious(e));

Callers 4

_onkeydownMethod · 0.95
_onkeyupMethod · 0.95
_onclickMethod · 0.95

Calls 1

_respPopoverMethod · 0.95

Tested by

no test coverage detected