<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 |
|---|---|
|
|
Defines if the user can interact with the control.
Possible values: |
|
|
Direction in which the elements flow. The order of the elements corresponds to their declaration. Possible values:
|
|
|
Defines what happens if the page is full. Possible values:
|
|
|
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>