* Converts a value from displayFormat to valueFormat * @param value Value in displayFormat * @returns Value in valueFormat * @private
(value: string)
| 897 | * @private |
| 898 | */ |
| 899 | getValueFromDisplayValue(value: string): string { |
| 900 | if (!this.getDisplayFormat().parse(value, true)) { |
| 901 | return value; |
| 902 | } |
| 903 | |
| 904 | return this.getValueFormat().format(this.getDisplayFormat().parse(value, true), true); |
| 905 | } |
| 906 | |
| 907 | /** |
| 908 | * Converts a value from valueFormat to displayFormat |
nothing calls this directly
no test coverage detected