We love feedback from you on our products and the problems in your daily work that you would like us to solve. Please describe the challenge you're encountering and your desired outcome. Be as detailed as possible.
For technical issues or bugs please head to Support or our Developer Community. You can assign up to 20 votes in total. Thank you for your feedback.
Status explanation: 'Future Consideration' = Continuing to collect further feedback, not planned at this time. 'Investigating' = Prioritized for deeper customer and feasibility investigations ahead of planning development.
Additionally, after doing some more digging, it seems that there is actually an issue.
Selecting the Danish language as default in Google Chrome results in the command:
Result in the following language code:
Which means that it would never hit the date formats mentioned in the EPiServerFormsSamples.js:
DateFormats: {
"en-us": {
"pickerFormat": "mm/dd/yy",
"friendlyFormat": "MM/dd/yyyy"
},
"sv-se": {
"pickerFormat": "yy-mm-dd",
"friendlyFormat": "yyyy-MM-dd"
},
"nb-no": {
"pickerFormat": "dd.mm.yy",
"friendlyFormat": "dd.MM.yyyy"
},
"da-dk": {
"pickerFormat": "dd-mm-yy",
"friendlyFormat": "dd-MM-yyyy"
},
"de-de": {
"pickerFormat": "dd.mm.yy",
"friendlyFormat": "dd.MM.yyyy"
},
"nl-nl": {
"pickerFormat": "d-m-yy",
"friendlyFormat": "d-M-yyyy"
},
"fi-fi": {
"pickerFormat": "d.m.yy",
"friendlyFormat": "d.M.yyyy"
},
"fr-fr": {
"pickerFormat": "dd/mm/yy",
"friendlyFormat": "dd/MM/yyyy"
}
}