Link
<Link>
controls are used to create hyperlinks. The hyperlink can be placed anywhere in the Web App.
The <link>
element may contain the following actions:
- Action „New“
<NewAction/>
- Action „Save“
<SaveAction/>
- Action „Delete“
<DeleteAction/>
- Action „File upload“
<UploadAction/>
- Action „Download file“
<DownloadAction/>
- Custom Action
<CustomAction/>
- Action "Reload"
<ReloadAction>
The following additional attributes can be defined for the <Link>
element:
Attribute | Description |
---|---|
enabled | Defines if the user can interact with the control.
Possible values: |
horizontalAlign | Direction in which the elements flow. The order of the elements corresponds to their declaration. Possible values:
|
textOverflow | Defines what happens if the page is full. Possible values:
|
visible | Defines if the control is visible.
Possible values: true / false or data binding expression |
Example
<DetailComponent
default="true"
path="Dashboard">
<GridLayout>
<Link>
<CustomAction
externalLink="https://www.softproject.de"
externalLinkTarget="new"
displayName="Open website" />
</Link>
</GridLayout>
</DetailComponent>