Skip to content

Link

This component is a hyperlink.

Property

NoItemInput ValueDefault ValueAction PropertyTypeAction Default ValueDescription
1IDStringAuto-generatedidstringAuto-generatedThe [id] property cannot be set by actions.
2LabelStringLinklabelstringLinkComponent label
3WidthString222widthstring222Component width
4HeightString40heightstring40Component height
5XStringxstringX coordinate position
6YStringystringY coordinate position
7TopNumber0paddingTopnumber0Component top padding
8RightNumber0paddingRightnumber0Component right padding
9BottomNumber0paddingBottomnumber0Component bottom padding
10LeftNumber0paddingLeftnumber0Component left padding
11ColorString
Color Picker
colorstringComponent text color
12Font SizeNumber16fontSizenumber16Font size (px)
13BoldBooleanOFFboldbooleanfalseBold setting
14ItalicBooleanOFFitalicbooleanfalseItalic setting
15StrikethroughBooleanOFFstrikethroughbooleanfalseStrikethrough setting
16UnderlineSelection
1. Always
2. Hover
3. None
AlwaysunderlinestringalwaysUnderline display setting
17VisibilityBooleanONvisibilitybooleantrueDisplay state
18Horizontal PositionSelection
1. Left
2. Center
3. Right
LefthorizontalAlignmentstringleftHorizontal alignment
19Vertical PositionSelection
1. Top
2. Center
3. Bottom
TopverticalAlignmentstringtopVertical alignment
20Click EventSelection
1. None
2. Action
3. NEXT UI
4. Value
5. WINDOW
6. Download
7. Dialog
ValueClick event (no action property)
21NEXT UISelection
1. None
2. [UI Label]
nextUistringDestination UI
22URLStringvaluestringLink destination URL
23PathStringdownloadstringDownload file path
24DIALOG UISelection
1.None
2.[Dialog UI Label]
dialogUistringDestination Dialog UI
Added in "v3.3.0"

[Details 1] External Service Site Integration

External Service Site Integration with WebPerformer-NX is possible with the following specifications

  • If a callback URL is specified, the user will be redirected to that URL after processing the external service site.
  • When migrating to a callback URL, pass data to the callback URL using query parameters

The definition procedure for External Service Site Integration that conforms to the above specifications is as follows

  1. Select "WINDOW" in "Click Event"
  2. Set the URL for the transition to the external service site in the URL field displayed.
  1. Define window action "Open".
    • Dynamically create the URL to open the window.
    • Specify the following for the callback URL parameter.
      If you are not using a custom domain:
      {Parameter}=https://{envid}.webperformer.jp/callback.html If you are using a custom domain:
      {Parameter}=https://{customdomain}/callback.html
    • The created URL is set in the value property. Example) $ui.link_id.value
  2. Define the window action "Close".
    • Receive a parameter of the transition destination URL with $param.{query parameter name}.
    • Bind the obtained value to the UI if necessary.

External Service Site Integration works as follows.

  1. Click on the settings component to open the external service site with the specified URL in a new tab.
  2. Complete the external service site processing.
  3. Navigate to the callback URL.
  4. Close the external service site with the process from the callback page.
  5. The action defined in the window action "Close" is executed.

Event

Event nameDescription
onclickFor the click event "Action": The action is executed when clicked.
For the click event "WINDOW": The action is described in "[Details 1] External Service Site Integration"