Link
This component is a hyperlink.
Tips
Properties
UI Dialog
Item | Input value | Option | Default value |
---|---|---|---|
ID | string | automatic | |
Label | string | Link | |
Width | string | 222 | |
Height | string | 40 | |
X | string | ||
Y | string | ||
Color | string color picker | ||
Font Size | number | 16 | |
Bold | boolean | • on • off | • off |
Italic | boolean | • on • off | • off |
Underline | select | • Always • Hover • None | Always |
Visibility | boolean | • on • off | on |
Click Event | string | • None • Action • NEXT UI • Value • WINDOW • Download | URL |
NEXT UI | Select | • None • Application UI | |
URL | string | ||
File Path | string |
Action
Item | Properties | Data Type | Options | Default value |
---|---|---|---|---|
ID | id | string | automatic | |
Label | label | string | Link | |
Width | width | string | 222 | |
Height | height | string | 40 | |
X | x | string | ||
Y | y | string | ||
Color | color | string | ||
Font Size | fontSize | number | 16 | |
Bold | bold | boolean | • true • false | false |
Italic | italic | boolean | • true • false | false |
Underline | underline | string | • always • hover • none | always |
Visibility | visibility | boolean | • true • false | true |
NEXT UI | nextUi | string | ||
URL | value | string | ||
File Path | download | string |
Tips
[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
- Select
"WINDOW"
in"Click Event"
- Set the URL for the transition to the external service site in the URL field displayed.
Tips
- 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
- 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.
- Click on the settings component to open the external service site with the specified URL in a new tab.
- Complete the external service site processing.
- Navigate to the callback URL.
- Close the external service site with the process from the callback page.
- The action defined in the window action
"Close"
is executed.
Tips
Event
Event name | Description |
---|---|
onclick | For 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" |