Reputation: 175
Part of month name string is hidden for long month name in Chinese like 十一月
Observation:
In inspector, altering width(css) of picker option results in full month name shown.
However, the alignment is broken.
Hope to see advice to correctly show the month name.
Thanks
Upvotes: 0
Views: 421
Reputation: 175
To enlarge month name datepicker width: add
.picker-col{
max-width: 70px !important;
}
in app.scss
Upvotes: 0
Reputation: 49
try something like this for full months names:
<ion-item>
<ion-label>Date</ion-label>
<ion-datetime display-format="DD MMMM YYYY" picker-format="DD/MMMM/YYYY"></ion-datetime>
</ion-item>
Upvotes: 1