Link

The Link component adds a clickable relative or absolute hyperlink. Use this component to direct users to external websites, internal application pages, such as an asset page, documentation, or any other relevant URL.

This component is for display purposes and does not store a value.

General properties

Property Description
ID The identifier of the component, primarily used for client-side interactions and identification in the HTML structure of the form. When you add a component, an ID is automatically generated to ensure it is unique in the form.
Documentation A text field for internal design notes or future reference about this specific component. This information is not visible in Collibra.
Link text A static or dynamic text to display as the link.
Tab Index The tabbing order of this component in a user task form. When navigating through the form by pressing the Tab key, the cursor moves from one component to another based on their assigned tab index numbers. The component with the lowest tab index number receives focus first. The focus then moves sequentially to the component with the next highest number. For example, a component with a tab index of 1 receives focus before a component with a tab index of 2.

The tab index is ignored if the component is inside a subform.

Validation properties

Attribute Description
Custom validations A list of additional validations for the component. Each custom validation consists of two parts:
  • Expression: A rule that must evaluate to true for the form to be submitted.
  • Error message: The message that shows if the expression evaluates to false.

For example, you can create a validation with the expression {{experience>2}}. This expression evaluates to true only if the value of the experience variable is greater than 2.

Rendering properties

Property Description
Navigation URL The URL to navigate to:
  • An absolute URL, for example https://<your_collibra_url>/settings/workflows?tabbar=WorkflowsDefinitions.
  • A relative URL, for example /settings/workflows?tabbar=WorkflowsDefinitions.
  • A link to an email address, for example mailto:[email protected].

The link can also contain expressions, for example https://<your_collibra_url>/asset/{{asset.value}}.

Ignored Whether the component is be hidden in the form and any value it might hold is not included in the submission data.
Target Where to open the linked document:
  • _blank to open the link in a new window or tab.
  • _self to open the link in the same window.

To respect the user browser preferences, don't specify any value for this attribute.

Visible Whether the component is shown or hidden on the form. You can controlled this unconditionally or through an expression. For example, you can set an expression that hides or shows the component based on a user selection in another component. This property is enabled by default.
Description Additional information shown in Collibra below the form field, providing detailed instructions, examples, or essential guidance.