weekFormat

Sets the format for the days of the week displayed at the top of the Calendar.

Type

String

The available formats are shown below:

'E'     // abbreviations, ‘Sun’, ‘Mon’, ‘Tue’, etc.
'EEEE'  // full display, ‘Sunday’, ‘Monday’, ‘Tuesday’, etc.

Example

Calendar1.weekFormat = "EEEE";

Either syntax below can be used in component script:

weekFormat              // unqualified
Calendar1.weekFormat    // qualified

For onInit/onRefresh scripts, and for component and property scripts on other components, the second (qualified) form is required.