maxDate

Specifies the latest selectable date when the ComboBox is configured to use a calendar interface for Date or TimeInstant type data. (See Radio Button/Check Box/Combo Box Properties for information on setting the ‘Calendar’ option.) This property should be set in the onInit handler (See Add Dashboard Script for more information about handlers.)

Type

Date

Latest selectable date on ComboBox calendar

Example

ComboBox1.minDate = dateAdd('yyyy',-1,CALC.today());
ComboBox1.maxDate = dateAdd('yyyy',1,CALC.today());

Either syntax below can be used in component script:

maxDate            // unqualified
ComboBox1.maxDate  // qualified

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