* Converts a value from valueFormat to displayFormat * @param value Value in valueFormat * @returns Value in displayFormat * @private
(value: string)
| 911 | * @private |
| 912 | */ |
| 913 | getDisplayValueFromValue(value: string): string { |
| 914 | if (!this.getValueFormat().parse(value, true)) { |
| 915 | return value; |
| 916 | } |
| 917 | |
| 918 | return this.getDisplayFormat().format(this.getValueFormat().parse(value, true), true); |
| 919 | } |
| 920 | |
| 921 | normalizeValue(value: string) { |
| 922 | if (value === "") { |
nothing calls this directly
no test coverage detected