If I set the date format string to: dd/MMM/yyyy
Dates in a Table show up correctly: 01/Jan/2016
However, in the Date Picker field it displays as: 01/___/2016
Is there a way to display the short month in the date picker field?
If I set the date format string to: dd/MMM/yyyy
Dates in a Table show up correctly: 01/Jan/2016
However, in the Date Picker field it displays as: 01/___/2016
Is there a way to display the short month in the date picker field?
No, DateField support only numerical values. It is mentioned in the doc.
But you can create a custom datatype with a desired formatting/parsing and use it in TextFields. See this topic for example: TextField formatting - CUBA.Platform
Thank you!