* Opens the Inputs popover. * @private * @returns Resolves when the Inputs popover is open
()
| 578 | * @returns Resolves when the Inputs popover is open |
| 579 | */ |
| 580 | openInputsPopover() { |
| 581 | this.tempValue = this.value && this.isValidValue(this.value) ? this.value : this.getValueFormat().format(UI5Date.getInstance()); |
| 582 | const popover = this._inputsPopover; |
| 583 | popover.opener = this; |
| 584 | popover.open = true; |
| 585 | this._isInputsPopoverOpen = true; |
| 586 | } |
| 587 | |
| 588 | /** |
| 589 | * Closes the Inputs popover |
no test coverage detected