(value: string)
| 636 | } |
| 637 | |
| 638 | getDisplayValueFromValue(value: string): string { |
| 639 | if (!this.getValueFormat().parse(value)) { |
| 640 | return value; |
| 641 | } |
| 642 | |
| 643 | return this.getDisplayFormat().format(this.getValueFormat().parse(value)); |
| 644 | } |
| 645 | |
| 646 | /** |
| 647 | * The ui5-input "submit" event handler - fire change event when the user presses enter |
no test coverage detected