Determines when the choice list
is presented by interactive applications.
SyntaxReference_Syntax.open = "userControl | onEntry | always | multiSelect"
Values
Type
|
Values
|
String
|
userControl (default)
onEntry
always
multiSelect
The list
drops down when the user clicks on a button or makes some other
appropriate gesture. The list disappears when the cursor moves outside
the list or some other appropriate user-interface event occurs.
onEntry
always
multiSelect
The list
drops down on entry into the field. It disappears upon exit from
the field.
The list
is displayed when the field is visible.
The
user can select multiple entries from the list by pressing the Shift
key while making selections. The list of choices is displayed when
the field is visible.
|
JavaScriptDropDownList1.resolveNode("ui.#choiceList").open = "always";
FormCalcDropDownList1.ui.#choiceList.open = "always"
|
|
|