()
| 449 | } |
| 450 | |
| 451 | get formFormattedValue() { |
| 452 | if (this._valueStorage !== undefined) { |
| 453 | return this._valueStorage; |
| 454 | } |
| 455 | |
| 456 | const selectedOption = this.selectedOption; |
| 457 | if (selectedOption) { |
| 458 | if ("value" in selectedOption && selectedOption.value !== undefined) { |
| 459 | return selectedOption.value; |
| 460 | } |
| 461 | return selectedOption.hasAttribute("value") ? selectedOption.getAttribute("value") : selectedOption.textContent; |
| 462 | } |
| 463 | return ""; |
| 464 | } |
| 465 | |
| 466 | onEnterDOM() { |
| 467 | registerUI5Element(this, this._updateAssociatedLabelsTexts.bind(this)); |
nothing calls this directly
no test coverage detected