* Checks if a value is valid against the current date format of the DatePicker. * @public * @param value A value to be tested against the current date format
(value: string)
| 734 | * @param value A value to be tested against the current date format |
| 735 | */ |
| 736 | isValidDisplayValue(value: string): boolean { |
| 737 | if (value === "" || value === undefined) { |
| 738 | return true; |
| 739 | } |
| 740 | |
| 741 | return !!this.getDisplayFormat().parse(value); |
| 742 | } |
| 743 | |
| 744 | /** |
| 745 | * Checks if a date is between the minimum and maximum date. |
no test coverage detected