Show TOC

MultiPaneLocate this document in the navigation structure

The MultiPane UI element is used to order the contents in the form of a grid, similar to the MatrixLayout, but with the difference that the dataSource is bound against a context node.

Note

Complex UI elements such as Table, Tree, GAC*, ViewContiner, InteractiveForm, Gantt, Network, Group, and Tray are not supported. The Table UI element should be used for single-line tabular data.

Example of the Visual Display

MULTIPANE

Note

To enable the development of accessible applications, the properties accessbilityDescription and tooltip are checked during the syntax check.

Runtime Class

CL_WD_MULTI_PANE

Properties in View Designer

Name Type Initial Value Bindable

id

STRING

(automatic)

No

accessibilityDescription

Translatable text

Yes

colCount

I

1

Yes

contextMenuBehaviour

WDUI_CONTEXT_MENU_BEHAVIOUR

inherit

No

contextMenuId

WDY_MD_UI_ELEMENT_REFERENCE

No

dataSource

Context Node

Mandatory

emptyText

STRING

Yes

enabled

WDY_BOOLEAN

true

Yes

firstActualPane

I

0

Yes

firstVisiblePane

I

0

Yes

footerVisible

WDY_BOOLEAN

false

Yes

height

STRING

Yes

paneCount

I

-1

Yes

rowCount

I

-1

Yes

stretchedHorizontally

WDY_BOOLEAN

true

No

stretchedVertically

WDY_BOOLEAN

true

No

tooltip

Translatable text

Yes

visible

WDUI_VISIBILITY

visible

Yes

width

STRING

Yes

Aggregations in the View Designer

Name Cardinality Type

Content

0..1

UIElement

Events in View Designer

Name

onScroll

Note

Other properties that can be inherited are defined in the related higher-level classes. The related UI elements are:

Dynamic Programming

For dynamic programming, the same properties, events, and aggregations as in the View Designer are available. But note that the spelling format and use of upper/lower case is different.

Dynamic Programming of Properties

View Designer Name Runtime Name Type

accessibilityDescription

ACCESSIBILITY_DESCR

WDY_MD_TRANSLATABLE_TEXT

colCount

COL_COUNT

I

contextMenuBehaviour

CONTEXT_MENU_BEHAVIOUR

WDUI_CONTEXT_MENU_BEHAVIOUR

 contextMenuBehaviour: inherit

CL_WD_MULTI_PANE=>E_CONTEXT_MENU_BEHAVIOUR-INHERIT

 contextMenuBehaviour: provide

CL_WD_MULTI_PANE=>E_CONTEXT_MENU_BEHAVIOUR-PROVIDE

 contextMenuBehaviour: suppress

CL_WD_MULTI_PANE=>E_CONTEXT_MENU_BEHAVIOUR-SUPPRESS

contextMenuId

CONTEXT_MENU_ID

WDY_MD_UI_ELEMENT_REFERENCE

dataSource

DATA_SOURCE

OBJECT

emptyText

EMPTY_TEXT

STRING

enabled

ENABLED

WDY_BOOLEAN

firstActualPane

FIRST_ACTUAL_PANE

I

firstVisiblePane

FIRST_VISIBLE_PANE

I

footerVisible

FOOTER_VISIBLE

WDY_BOOLEAN

height

HEIGHT

STRING

paneCount

PANE_COUNT

I

rowCount

ROW_COUNT

I

stretchedHorizontally

STRETCHED_HORIZONTALLY

WDY_BOOLEAN

stretchedVertically

STRETCHED_VERTICALLY

WDY_BOOLEAN

tooltip

TOOLTIP

WDY_MD_TRANSLATABLE_TEXT

visible

VISIBLE

WDUI_VISIBILITY

visible: none

CL_WD_MULTI_PANE=>E_VISIBLE-NONE

visible: visible

CL_WD_MULTI_PANE=>E_VISIBLE-VISIBLE

width

WIDTH

STRING

Dynamic Programming of Events

View Designer Name Runtime Name

onScroll

ON_SCROLL

Dynamic Programming of Aggregations

View Designer Name Runtime Name Cardinality

Content

CONTENT

0..1

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 MULTI_PANE view.