Link

Link is a hyperlink which is used to open external web resources.

Component’s XML-name: link.

An example of XML-description for link:

<link caption="Link"
      url="https://www.jmix.io/"
      target="_blank"
      rel="noopener"/>

Attributes

  • url – the URL of the web resource.

  • target – sets the web page opening mode, the same as the target attribute of the <a> HTML element.

  • rel - an optional attribute that specifies the relationship between the current document and the linked document. It corresponds to the rel HTML attribute which is placed within the <a> tag. Default value is noopener noreferrer.

  • noopener - indicates that any browsing context created by following the link will not have an opener browsing context, which means that its window.opener property will be null.

  • noreferrer - indicates that no HTTP referer header is to be sent when following the link.