VPopList¶
Oracle Forms VPopList.
UI element class: oracle.forms.ui.VPopList
Extends OracleFormsObject
Extends SeSSimulatedObject
Behavior Pattern: OracleFormsChoiceBehavior
Property Summary¶
| Property | Description | Getter | Setter |
|---|---|---|---|
| ItemIndexByName | Returns item index by its name. | GetItemIndexByName | |
| Value | Value of the object. | GetValue | SetValue |
Action Summary¶
| Action | Description |
|---|---|
| DoSelectItem | Selects an item of this object. |
Property Detail¶
ItemIndexByName¶
Returns item index by its name. 'false' if name is not found.
Getter Parameters:
| Name | Type | Description |
|---|---|---|
| name | string |
Type: number|boolean
Accessors: GetItemIndexByName
value = SeS('SomeVPopList').GetItemIndexByName()
Value¶
Value of the object.
Type: text
Accessors: GetValue, SetValue
value = SeS('SomeVPopList').GetValue()
SeS('SomeVPopList').SetValue()
Action Detail¶
DoSelectItem¶
Selects an item of this object.
SeS('SomeVPopList').DoSelectItem(item)
Parameters:
| Name | Type | Description |
|---|---|---|
| item | string | number | Item index or text value to select. |
Returns:
boolean: 'true' if success, 'false' otherwise.