You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's functionality to set the date display format for the DatePicker in the DatePickerFactory.
IF the format is set e.g. Form form = new Form(); form.setDatePickerDisplayFormat("dd MMM yyyy");
Then the date calculations
addDuration()
formatDate()
addDuration()
are broken because the Utils.reverseDateString(dateString, "-") throws an NPE as a result of the missing "-" delimiter
The text was updated successfully, but these errors were encountered:
There's functionality to set the date display format for the DatePicker in the DatePickerFactory.
IF the format is set e.g.
Form form = new Form(); form.setDatePickerDisplayFormat("dd MMM yyyy");
Then the date calculations
are broken because the
Utils.reverseDateString(dateString, "-")
throws an NPE as a result of the missing "-" delimiterThe text was updated successfully, but these errors were encountered: