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
Hi unsure where this belongs, however if you are creating a new C# MVC application. In previous incarations of the datepicker the MMM format has returned back 3 digit months. This is still the case apart from September which returns back Sept.
C# Doesn't - out of the box - recognise this as a valid month/date.
At least not in the Uk - great britain.
Seems like the fix is doing
localization: {
locale: 'en-US',//fix to make sure september is shortended to sep - rather than sept - which c# doesn't understand
format: 'dd-MMM-yyyy'
},
Hi unsure where this belongs, however if you are creating a new C# MVC application. In previous incarations of the datepicker the MMM format has returned back 3 digit months. This is still the case apart from September which returns back Sept.
C# Doesn't - out of the box - recognise this as a valid month/date.
At least not in the Uk - great britain.
The fix - enter
In the web.config.
This seems to be down to the Intl.DateTimeFormat library and less tempusdominus - but thought I would save someone a job if they find this.
The text was updated successfully, but these errors were encountered: