DateTimePicker.MonthNames

Syntax

MonthNames: Array

Description

The MonthNames property sets the array with the months names that are displayed in the editor input box in the month mode.

Example

To execute the example, create the DateTimePicker component (see Example of Creating the DateTimePicker Component) named DTP. Use the MonthNames property in order to change the months names in the input box:

DTP.setMonthNames([January, February, March, April, May, June, July, August, September, October, November])

It is possible to set the property value by the JSON object in the following way:

DateTimeEdit: {MonthNames: [January, February, March, April, May, June, July, August, September, October, November]}

See also:

DateTimePicker