Skip to content

Latest commit

 

History

History
19 lines (11 loc) · 704 Bytes

declarative-support-associations-deprecated-91f13d9.md

File metadata and controls

19 lines (11 loc) · 704 Bytes

Declarative Support: Associations (deprecated)

An association is defined as a data attribute of the HTML tag. Instead of passing the reference to another control you define the ID of another control.

Caution:

Deprecated as of UI5 version 1.120, replaced by XML View.

The following code gives an example:

<div data-sap-ui-type="sap.m.Label" data-text="Message:" data-label-for="message"></div>
<div data-sap-ui-type="sap.m.Input" id="message"></div>

The code snippet defines the link between Label and Input by using the ID of Input as a value for the data-label-for attribute of the Label.