ItemListBox
This UI element is similar to the classical GUI concept of a selection list with simple and multiple selection (list box). A list of text entries is displayed in a box of a fixed size, which if necessary you can scroll through. One or two columns are displayed for the values and possibly one column for symbols is displayed before the value column(s).
In the case of a simple selection, the selected entry is determined by the lead selection of the dataSource. If the user changes the selection, the selectionChangeBehaviour property is adhered to. With multiple selection the selected entries are determined by the dataSource selection only; selectionChangeBehaviour is not considered.

To enable the development of accessible applications the label property is checked during the syntax check.
If no label has been set, and no descriptive text has been specified for the appropriate bound context element in the ABAP Dictionary, the tooltip property is checked.
Example of the Visual Display
|
|
Runtime Class |
CL_WD_ITEM_LIST_BOX |
Properties in the View Designer
Name |
Type |
Initial Value |
Bindable |
ID |
STRING |
(automatic) |
No |
WDY_BOOLEAN |
false |
No |
|
WDUI_CONTEXT_MENU_BEHAVIOUR |
inherit |
No |
|
WDY_MD_UI_ELEMENT_REFERENCE |
|
No |
|
Context node |
|
Mandatory |
|
Translatable text |
|
Yes |
|
WDUI_TEXT_DIRECTION |
inherit |
Yes |
|
WDY_BOOLEAN |
true |
Yes |
|
Translatable text |
|
No |
|
STRING |
|
Yes |
|
WDY_BOOLEAN |
false |
Yes |
|
WDY_BOOLEAN |
false |
Yes |
|
WDUI_LEAD_SEL_CHNG_BEHVR |
auto |
No |
|
Translatable text |
|
Yes |
|
WDUI_TEXT_DIRECTION |
inherit |
Yes |
|
Translatable text |
|
Yes |
|
WDUI_VISIBILITY |
visible |
Yes |
|
I |
10 |
Yes |
|
STRING |
|
Yes |
Aggregations in the View Designer
Name |
Cardinality |
Type |
0..1 |
||
0..1 |
Events in the View Designer
Name |

Other properties that can be inherited are defined in the associated higher-level classes. The associated UI elements are:
For dynamic programming, the same properties, events, and aggregations as in the View Designer are available. Bear in mind the different spellings.
Dynamic Programming of Properties
View Designer Name |
Runtime Name |
Type |
ACTIVATE_ACCESS_KEY |
WDY_BOOLEAN |
|
CONTEXT_MENU_BEHAVIOUR |
WDUI_CONTEXT_MENU_BEHAVIOUR |
|
contextMenuBehaviour: inherit |
CL_WD_ITEM_LIST_BOX=>E_CONTEXT_MENU_BEHAVIOUR-INHERIT |
|
contextMenuBehaviour: provide |
CL_WD_ITEM_LIST_BOX=>E_CONTEXT_MENU_BEHAVIOUR-PROVIDE |
|
contextMenuBehaviour: suppress |
CL_WD_ITEM_LIST_BOX=>E_CONTEXT_MENU_BEHAVIOUR-SUPPRESS |
|
CONTEXT_MENU_ID |
WDY_MD_UI_ELEMENT_REFERENCE |
|
DATA_SOURCE |
OBJECT |
|
DESCR_TEXT |
WDY_MD_TRANSLATABLE_TEXT |
|
DESCR_TEXT_DIRECTION |
WDUI_TEXT_DIRECTION |
|
descriptiveTextDirection: inherit |
CL_WD_ITEM_LIST_BOX=>E_DESCR_TEXT_DIRECTION-INHERIT |
|
descriptiveTextDirection: ltr |
CL_WD_ITEM_LIST_BOX=>E_DESCR_TEXT_DIRECTION-LTR |
|
descriptiveTextDirection: rtl |
CL_WD_ITEM_LIST_BOX=>E_DESCR_TEXT_DIRECTION-RTL |
|
ENABLED |
WDY_BOOLEAN |
|
EXPLANATION |
WDY_MD_TRANSLATABLE_TEXT |
|
ICON_SOURCE |
STRING |
|
MULTIPLE_SELECTION |
WDY_BOOLEAN |
|
READ_ONLY |
WDY_BOOLEAN |
|
SELECTION_CHANGE_BEHAVIOUR |
WDUI_LEAD_SEL_CHNG_BEHVR |
|
selectionChangeBehaviour: auto |
CL_WD_ITEM_LIST_BOX=>E_SELECTION_CHANGE_BEHAVIOUR-AUTO |
|
selectionChangeBehaviour: manual |
CL_WD_ITEM_LIST_BOX=>E_SELECTION_CHANGE_BEHAVIOUR-MANUAL |
|
TEXT |
WDY_MD_TRANSLATABLE_TEXT |
|
TEXT_DIRECTION |
WDUI_TEXT_DIRECTION |
|
textDirection inherit |
CL_WD_ITEM_LIST_BOX=>E_TEXT_DIRECTION-INHERIT |
|
textDirection ltr |
CL_WD_ITEM_LIST_BOX=>E_TEXT_DIRECTION-LTR |
|
textDirection rtl |
CL_WD_ITEM_LIST_BOX=>E_TEXT_DIRECTION-RTL |
|
TOOLTIP |
WDY_MD_TRANSLATABLE_TEXT |
|
VISIBLE |
WDUI_VISIBILITY |
|
visible: none |
CL_WD_ITEM_LIST_BOX=>E_VISIBLE-NONE |
|
visible: visible |
CL_WD_ITEM_LIST_BOX=>E_VISIBLE-VISIBLE |
|
VISIBLE_ITEMS |
I |
|
WIDTH |
STRING |
|
Dynamic Programming of Events
View Designer Name |
Runtime Name |
ON_DROP |
|
ON_LEAD_SELECT |
Dynamic Programming of Aggregations
View Designer Name |
Runtime Name |
Cardinality |
DRAG_SOURCE_INFO |
0..1 |
|
DROP_TARGET_INFO |
0..1 |
You can find examples in the system in the Web Dynpro application, WDR_TEST_UI_ELEMENTS.