Element - input combobox
The input element of type combobox is used add a combobox to the current page.
Syntax:
|
Child item elements are used to add entries to the combobox.
The entry value can come from the item value attribute or as a text node between the start and end item tag.
Syntax:
|
Example
<input type="combobox" name="COMBO1" x1="100" y1="600" width="200" length="20" style="form">
<item value="C1"/>
<item>C2</item>
<item value="C3" selected="true"/>
<item value="C4"/>
<item value="{FIELD}"/>
<item value="C6"/>
</input>