To insert an option component:
The option node is inserted and highlighted under the expanded parent node.
Tip: For an option to be rendered as selected, ADF UIX uses these attributes in this order of precedence: selection attribute on the option container (e.g., messageChoice), selected attribute on the option component, selectedValue attribute on the option container, selectedIndex on the option container.
Note: To use data binding, see Data Binding a Component Attribute.
...
<messageChoice prompt="Need-by Date"
messageType="error"
message="This date has passed."
name="mcho1">
<contents>
<option text="10-JULY-2001" />
<option text="10-AUG-2001" selected="true"/>
<option text="10-SEP-2001" />
</contents>
</messageChoice>
...
...
<messageList name="mylist"
multiple="true"
prompt="Choose your options:">
<contents>
<option text="Option1" value="value1" />
<option text="Option2" value="value2" />
<option text="Option3" value="value3" />
</contents>
</messageList>
...
About Option
About Message Form Components and Attributes
Inserting a MessageChoice
Inserting a MessageList
Working with
Form Components
Copyright © 1997, 2004, Oracle. All rights reserved.