Show TOC Start of Content Area

Object documentation CheckBoxGroup This graphic is explained in the accompanying text  Locate the document in its SAP Library structure

Definition

The checkbox group enables the user to select one element from a set of options checking it. The CheckBoxGroup UI element lists the checkboxes as a table. As opposed to the RadioButtonGroup, you can check multiple fields.

Visual Display

This graphic is explained in the accompanying text

This graphic is explained in the accompanying text

Description of UI Element Properties

      accessibilityDescription

When accessibility is activated, the assigned text is added to the tooltip. This description provides semantic details of the UI element and is only read by the screen reader if the user focuses the complete Ul element.

      activateAccessKey

Indicates whether access key for this control is activated. More information: Enabling Access Keys

      colCount

Specifies the number of columns in which the CheckBox elements are grouped.

      readOnly

Specifies whether or not the user can check the checkbox in the checkbox group.

      state

Describes the status of the UI element. The data type of this property corresponds to the enumeration type WDState. You can use the following values in the application:

normal

Describes the default state of the UI element.

required

The required state is displayed by an asterisk.

      textDirection

Specifies the text direction and allows you to use a checkbox group for texts in languages which require a specific text direction. The textDirection property can be filled with the following values and is represented by the enumeration type WDTextDirection.

inherit

The text direction is inherited from the parent element. Therefore, the text direction is identical to the one of the parent element.

ltr

The text runs from left to right.

rtl

The text runs from right to left.

The default value for this property is inherit.

      texts

Specifies the path of the context attribute within a context node whose node elements provide the texts of the individual checkboxes at runtime.

      width

Specifies the minimum width of the CheckBoxGroup UI element. You can specify the width in CSS units like em, ex, pixel, or percentage.

Overview of Inherited and Additional Properties

Name

Interface

Type

Initial Value

Bindable

accessibilityDescription

IWDCheckBoxGroup

String (TranslatableText)

 

bindable

activateAccessKey

IWDCheckBoxGroup

boolean

false

not bindable

enabled

IWDUIElement

boolean

true

bindable

colCount

IWDCheckBoxGroup

int

1

bindable

readOnly

IWDCheckBoxGroup

boolean

false

bindable

state

IWDCheckBoxGroup

WDState

normal

bindable

textDirection

IWDCheckBoxGroup

WDTextDirection

inherit

bindable

texts

IWDCheckBoxGroup

String (TranslatableText)

 

bindable_mandatory

tooltip

IWDUIElement

String (TranslatableText)

 

bindable

visible

IWDUIElement

WDVisibility

visible

bindable

width

IWDCheckBoxGroup

String

 

bindable

Events

      onToggle (boolean checked, int index)

This event is triggered when the user checks a checkbox in the CheckBoxGroup.

Event parameters

Type

Description

checked

boolean

The new value of the checkbox.

index

int

Index (0..n) of the selected checkbox.

Data Binding

A checkbox group is a multiple selection displayed as a group of checkboxes on the screen.

The view context must provide the node X that can contain 0 to n values (X.cardinality = 0..n). The context node must contain an attribute y that provides the texts for the checkbox fields. The data type of the context attribute y can be any simple data type – for example, String, int, and so on. The number of checkboxes equals the number of node elements. The selection of the checkboxes is determined by the multiple selection of the node. The texts property of the CheckBoxGroup UI element is bound to the attribute y by assigning the context path of the context y to the texts property.

End of Content Area