Documentation

calendar

the default locale months and days names

object calendar;

Example

webix.i18n.calendar: {
        monthFull:["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
        monthShort:["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
        dayFull:["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
        dayShort:["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]
}
webix.i18n.setLocale("en-US");

See also

Details
  • monthFull - the full names of months starting from January.
  • monthShort - the short names of months starting from January.
  • dayFull - the full names of week days starting from Sunday.
  • dayShort - the short names of week days starting from Sunday.

You need to call setLocale to apply the new format settings

Back to top