Our international users that use a date format other than mm/dd/yyyy are encountering issues when creating content items:
1) They receive the following popup:
The following application error(s) occurred.
Default Value 9/16/2011 is not of data type Data
2) After the COE appears all dates that are configured to be pre-populated appear showing the label but no date selector. The workaround: users with browser locales for a different date format cannot use the COE unless they add US English as their preferred locale.
We have the CCE Widget setup under data management so that the default value type is a javascript string defined as:
var today = new Date(); return (today.getMonth() + 1)+"/"+today.getDate()+"/"+today.getFullYear();
What is the correct way of setting a default date on a Date Selector CCE for a global VCM deployment?
Thanks in advance.