I have a input type="month" control and I am using Angular UI bootstrap as well.
When I select a month in IE it is shown as yyyy-MM format. But in google chrome it s shown as MMMM yyyy format.
When localized the months in calendar control is shown as localized text but after the selection in the input box it is showing the english month name.
Desired solution: Either show the localized month in the input box or change the format as yyyy-MM in google chrome as well.
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/month
So since this is based on the date locale format, I don't think you're going to be able to get what you want by using the
<input type=month>--however the value that you get from this should always be inYYYY-MMformat per the specs.If how the date is displayed is important, I'd consider some of the pre-HTML5 solutions out there for date controls. e.g like this: https://jqueryui.com/datepicker/