DragSourceInfo Properties
● data
Textual representation of data transported to DropTarget. Along with mimeType, this property forms a link to resources.

Since the data is transported using the client, there must not be any data for which security is critical and there must also not be any large data in the data property. The values for data should be a kind of reference to the actual data.
The same applies for the drop actions: You should always check whether the drop action is allowed, as for the input check for an InputField.
● enabled
Defines whether the object can be moved using Drag&Drop.
This property
can be personalized by an administrator.
In personalization, this property can be assigned the value false
● mimeType
Type of resource.
Note that this property is not currently used; it is intended for future developments.
● scope
Scope of DragSourceInfo.
Value |
Description |
componentInstance |
DragSourceInfo can only be used within the component for security reasons. Objects can only be moved to a UI element of the same component using Drag&Drop. |
global |
DragSourceInfo can be used globally. |
● tags
This property corresponds to flavors in the programming environment. The flavor describes the type of drag and drop description. In a drag and drop operation, you can only drop an object onto another if both have at least one common description.
It enables possible DropTargets to be identified. Drag&Drop is only possible if the DragSourceInfo has at least one DropTarget tag. Multiple tags can be assigned to a DragSourceInfo.
The specifications for this property are case-sensitive. Entries must be separated by spaces. You may not use the following characters: Colon (:), comma (,), semicolon (;), backslash (\), slash (/), period (.). You can use an asterisk (*) as a wildcard.
You can use this property to define your own development standards. As a software architect, you should pay attention to which tags you are using and how they are designed.