Skip to main content
Skip table of contents

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:

The following additional attributes can be defined for the  <Link>   element:

AttributeDescription
enabled

Defines if the user can interact with the control.

  • Data binding (boolean) possible

Possible values: true/false or data binding expression

horizontalAlign

Direction in which the elements flow. The order of the elements corresponds to their declaration.

Possible values:

  • left (default)

  • center

  • right

textOverflow

Defines what happens if the page is full.

Possible values:

  • ellipsis: Show with ... that the text is not finished

  • hidden: Break off text, paying attention to whole words

  • wordBreak: Break off within the word

  • allow (default): Break off text between words

visible

Defines if the control is visible.

  • Data binding (boolean) possible

Possible values: true / false or data binding expression

XML
<DetailComponent
	default="true"
	path="Dashboard">
	<GridLayout>
		<Link>
			<CustomAction
				externalLink="https://www.softproject.de"
				externalLinkTarget="new"
				displayName="Open website" />
		</Link>
	</GridLayout>
</DetailComponent>
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.