Provide the design-time metadata and the meta functions needed when the move action is performed.
The name of the design-time metadata file is <control>.designtime.js
. The module returns an object literal with the following properties:
Property (Level 1) |
Property (Level 2) |
Property (Level 3) |
Property (Level 4) |
Property (Level 5) |
Description |
---|---|---|---|---|---|
|
-> |
-> |
-> |
-> |
Describes the aggregations of the element. |
|
-> |
-> |
-> |
Describes the aggregation called |
|
|
-> |
-> |
Describes the part of your DOM that contains the elements of the aggregation. For more information, see Aggregation domRef Property. |
||
... other possible properties ... |
-> |
-> |
For more information, see Aggregation domRef Property. |
||
|
-> |
-> |
Describes the actions that can be applied to the element. |
||
|
-> |
Provides or computes the change type. |
|||
|
Change type for the move action. |
Here's an example:
VerticalLayout.designtime.js
sap.ui.define([], function() { "use strict"; return { aggregations: { content: { domRef: ":sap-domref", actions: { move: "moveControls" } } } }; });