Links
Introduction
- A
Linkis a configurable unit designed to define and manage the links for specific wizard steps, particularly for those of theTABLE_SELECTIONtype. - A
Linkcan have an icon. Supported icon:adddownloadsyncsetting
- Currently, we support opening the link (target) with 2 types:
NEW_TAB: Open the link in a new tab.IFRAME: Open the link in an iframe.
Configuration
- All
Linksconfigurations are stored and maintained in the ISON configuration.
ISON Configuration Details
The following sample illustrates how a Link is configured in the ISON file.
Sample ISON Configuration
<links>
<link id="link">
<url>url</url>
<url_method>url_method</url_method>
<target>[NEW_TAB|IFRAME]</target>
<label>link_label</label>
<icon>[add|download|sync|setting]</icon>
</link>
</links>
Explanation of Configuration Elements
-
<links>: Wrapper element for Links configuration. -
<link>: Each<link>element represents the configuration for a single link.
Attributes:
id: The unique ID of theLink, which should match the ID configured in theWizard Step. This attribute is required.
Elements:
<url>: The URL for theLink.<url_method>: If the Url needs to be dynamic, we can configure a plugin method here to return the url.<target>: Determines how theLinkis opened: in a new tab or within an iframe.<label>: The label of theLink, supporting language-dependent translation.<icon>: Specific the icon for theLink.