queryDateFormat

For Combo Box only, enables formatting of dates sent to the database in the Combo Box query. To set the format, use dateFormatPattern.

Type

Boolean

true: formatting on
false: formatting off

Example

ComboBox1.queryDateFormat = true;
ComboBox1.dateFormatPattern = 'yyyy-MM-dd';

Either syntax below can be used in component script:

queryDateFormat            // unqualified
ComboBox1.queryDateFormat  // qualified

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