Skip to content

refresh

refresh refreshes the current node.

actionValues
path (optional) string. By configuring a path you can refresh a specific record
trees (optional) By configuring (multiple) trees as array of string you can refresh/reset
paths (optional) array of strings. By configuring (multiple) paths as array of string you can refresh other nodes as well

default

{
    "label": "Refresh",
    "icon": "icon-sync",
    "action": "refresh"
}

For path

{
    "label": "Refresh",
    "icon": "icon-sync",
    "action": "refresh",
    "actionValues": [
        {
            "path": "my-tree/node/1"
        }
    ]
}

For paths and trees

{
    "label": "Refresh",
    "icon": "icon-sync",
    "action": "refresh",
    "actionValues": [
        {
            "paths": ["my-tree/node/1", "my-tree/node/2"],
            "trees": ["my-tree"]
        }
    ]
}