Entering content frame

Background documentation RadioButtonGroupByKey Locate the document in its SAP Library structure

The RadioButtonGroupByKey UI element groups multiple RadioButtons in a table.Unlike UI element CheckBoxGroup, this UI element allows user to select one element only.

Example of the Display

This graphic is explained in the accompanying text

The dropdown list box UI elements, RadioButtonGroup and RadioButtonGroupByIndex, do not differ from each other when displayed on the screen. However, the data binding model for the RadioButtonGroupByKey UI element has a completely different concept (see section Data Binding).

Note

If the tooltip property has not been set, the property accessibilityDescription is checked during the design time to ensure Accessibility.

 

Runtime Class

CL_WD_RADIOBUTTON_GROUP_BY_KEY

 

Properties in the View Designer

Name

Type

Initial Value

Bindable

ID

STRING

(automatic)

No

accessibilityDescription

Text

 

Yes

colCount

I

1

Yes

enabled

WDY_BOOLEAN

true

Yes

keyVisible

WDY_BOOLEAN

false

Yes

readOnly

WDY_BOOLEAN

false

Yes

selectedKey

STRING

 

mandatory

state

WDUI_STATE

normal

Yes

textDirection

WDUI_TEXT_DIRECTION

inherit

Yes

tooltip

Text

 

Yes

visible

WDUI_VISIBILITY

visible

Yes

width

STRING

 

Yes

 

Events in the View Designer

Name

onSelect

Note

Further properties that can be inherited are defined in the associated higher-level class.  The associated interface elements are:

      UIElement

      ViewElement

Data Binding

The values for the DropDownByKey are determined from the value set of the attribute bound to the property selectedKey. If the attribute has an ABAP Dictionary type and if fixed domain values are defined for this type, these values are used. The text for the respective value is displayed in the list and in the DropDownByKey field.

See Data Binding within Web Dynpro generally, and Data Binding of UI Element Properties, and Data Binding Using Keys.

Dynamic Programming

For dynamic programming the same properties, events, and aggregations are provided in the View Designer. Bear in mind the different spellings.

Dynamic Programming of Properties

View Designer Name

Runtime Name

Type

accessibilityDescription

ACCESSIBILITY_DESCR

WDY_MD_TRANSLATABLE_TEXT

colCount

COL_COUNT

I

enabled

ENABLED

WDY_BOOLEAN

keyVisible

KEY_VISIBLE

WDY_BOOLEAN

readOnly

READ_ONLY

WDY_BOOLEAN

selectedKey

SELECTED_KEY

STRING

state

STATE

WDUI_STATE

 state: normal

CL_WD_RADIOBUTTON_GROUP_BY_IDX=>E_STATE-NORMAL

 state: required

CL_WD_RADIOBUTTON_GROUP_BY_KEY=>E_STATE-REQUIRED

textDirection

TEXT_DIRECTION

WDUI_TEXT_DIRECTION

 textDirection: inherit

CL_WD_RADIOBUTTON_GROUP_BY_KEY=>E_TEXT_DIRECTION-INHERIT

 textDirection: ltr

CL_WD_RADIOBUTTON_GROUP_BY_KEY=>E_TEXT_DIRECTION-LTR

 textDirection: rtl

CL_WD_RADIOBUTTON_GROUP_BY_KEY=>E_TEXT_DIRECTION-RTL

tooltip

TOOLTIP

WDY_MD_TRANSLATABLE_TEXT

visible

VISIBLE

WDUI_VISIBILITY

 visible: none

CL_WD_RADIOBUTTON_GROUP_BY_KEY=>E_VISIBLE-NONE

 visible: visible

CL_WD_RADIOBUTTON_GROUP_BY_KEY=>E_VISIBLE-VISIBLE

width

WIDTH

STRING

 

Dynamic Programming of Events

View Designer Name

Runtime Name

onSelect

ON_SELECT

Example

You can find examples of this interface element in the system in the Web Dynpro application WDR_TEST_UI_ELEMENTS, and in the component WDR_TEST_EVENTS in the view RadiobtnGrpByKey.

 

 

Leaving content frame