Gets or sets a list of short month names.
Namespace: MindFusion.Common
File: Locale.js
JavaScript Copy Code |
---|
get shortMonths() {} |
Array
An array of short month names.
The following code creates a new Locale instance that uses the dateSettings property to specify the desired date and time formats.
JavaScript Copy Code |
---|
var locale = new Locale("us-2"); locale.dateSettings.firstDayOfWeek = 0; locale.dateSettings.dateFormats.shortDate = "MM/d/yyyy"; locale.dateSettings.generate(); calendar.locale = locale; |