Icon Button
Icon Button is an icon-type button component.
Tips
Properties
UI Dialog
Item | Input value | Option | Default value |
---|---|---|---|
ID | string | automatic | |
Width | string | 90 | |
Height | string | 40 | |
X | string | ||
Y | string | ||
size | Selection | ・small ・medium ・large | Medium |
Color | string color picker | ||
Disabled | boolean | off | |
Visibility | boolean | on | |
Icon | select | AddCircle | |
Badge Content | number | ||
Badge Color | string color picker | ||
Alert Dialog | select | off | |
Alert Value | Table format Details 3 | Details 3 | |
Tooltip | string | ||
Click Event | select | ACTION | |
NEXT UI | select | ||
URL | string | ||
Drawer | table details 1 | details 1 | |
Drawer Width | number | ||
Menu | table details 2 | details 2 |
Action
Item | Properties | Data Type | Options | Default value |
---|---|---|---|---|
ID | id | string | automatic | |
Width | width | string | 90 | |
Height | height | string | 40 | |
X | x | string | ||
Y | y | string | ||
Size | size | string | ・small ・medium ・large | medium |
Color | color | string | ||
Disabled | disabled | boolean | false | |
Visibility | visibility | boolean | true | |
Tooltip | tooltip | string | ||
Badge Content | badgeContent | number | ||
Badge Color | badgeColor | string | ||
NEXT UI | nextUi | string | ||
URL | url | string | ||
Drawer | drawerItems | array of object | details 1 | |
Drawer Width | drawerWidth | number | ||
Menu | menuItems | array of object | details 2 |
Tips
[Details 1] Drawer
The default status is registered as follows. Register from the "Add"
button.
To delete, select the check box and click the "Delete"
button.
Select | ID | Icon | Label | Click Event | NEXT UI | URL | Divider |
---|---|---|---|---|---|---|---|
Checkbox | item1 | MoveToInbox | Inbox | None | No | ||
Checkbox | item2 | Starred | None | No | |||
Checkbox | item3 | MoveToInbox | Send Email | None | No | ||
Checkbox | item4 | Drafts | None | Yes | |||
Checkbox | item5 | MoveToInbox | All Mail | None | No | ||
Checkbox | item6 | Trash | None | No | |||
Checkbox | item7 | MoveToInbox | Spam | None | No |
[{"id":"item1","Icon":"MoveToInbox","label":"Inbox","Clickevent":"None","NextUi":"","url":"","divider":false},{"id":"item2","Icon":"Mail","label":"Starred","Clickevent":"None","NextUi":"","url":"","divider":false},{"id":"item3","Icon":"MoveToInbox","label":"Send Email","Clickevent":"None","NextUi":"","url":"","divider":false},{"id":"item4","Icon":"Mail","label":"Drafts","Clickevent":"None","NextUi":"","url":"","divider":true},{"id":"item5","Icon":"MoveToInbox","label":"All Mail","Clickevent":"None","NextUi":"","url":"","divider":false},{"id":"item6","Icon":"Mail","label":"Trash","Clickevent":"None","NextUi":"","url":"","divider":false},{"id":"item7","Icon":"MoveToInbox","label":"Spam","Clickevent":"None","NextUi":"","url":"","divider":false}]
Tips
[Details 2] Menu
A menu is the choices that appear when you click on an icon button.
The default status is registered as follows. Register from the "Add"
button.
To delete, select the check box and click the "Delete"
button.
Select | ID | ICON | LABEL | CLICK EVENT | NEXT UI | URL | DIVIDER |
---|---|---|---|---|---|---|---|
Checkbox | Profile | AccountCircle | Profile | None | No | ||
Checkbox | MFA_Setting | Settings | MFA Setting | NextUi | MFA Setting Step1 | No | |
Checkbox | Change_Password | LockReset | Change password | NextUi | Change Password | No | |
Checkbox | Sign_Out | Logout | Sign out | NextUi | Sign Out | No |
Tips
[Details 3] Alert Value
The default status is registered as follows
Edit the value columns for the items "Title"
,"Contents"
, "Cancel"
, and "Submit"
.
Item | Value |
---|---|
Title | Are You Sure? |
Contents | Once you execute, all the previous changes will be lost and existing users will not be able to view the last changes. This cannot be reverted. |
Cancel | Cancel |
Submit | Submit |
[Details 4] 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 url property. Example) $ui.icon_button_id.url
- 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" : Execute an action when clicked.For the click event "Upload" : The action is executed when the "Open (O)" button is clicked after the file is selected.For the click event "WINDOW" : The operation is described in "[Details 4] External Service Site Integration" . |