Hello Ivy team.
I have a couple of entries in the top menu of the Portal Dashboard, and I am wondering how to set a specific index or order for each menu item. I currently have the following setup and IDs A1A , B2B , C3C .
The menu entries do not show in the order in the JSON.
Is there a property that sets a specific place where they are displayed like an index, for example?
What parameter determines the order in which the items are displayed?
variables.Portal.Dashboard.json
[
{
"id": "A1A",
"version": "12.0.0",
"templateId": "template1",
"titles": [
{
"locale": "en",
"value": "tasks"
}
],
"icon": "fa fa-home fa-fw",
"widgets": [
{
"type": "task",
"id": "A1A",
"names": [
{
"locale": "en",
"value": "Tasks"
}
],
"layout": {
"w": 12,
"h": 10,
"x": 0,
"y": 0
},
}
],
"permissions": [
"Everybody"
],
"isTopMenu": true
},
{
"id": "B2B",
"version": "12.0.0",
"templateId": "b2",
"titles": [
{
"locale": "en",
"value": "Processes"
}
],
"icon": "fa fa-cogs",
"widgets": [
{
"type": "compact-process",
"id": "B2B",
"names": [
{
"locale": "en",
"value": ""
}
],
"layout": {
"w": 12,
"h": 13,
"x": 0,
"y": 0
},
"processPaths": [
"designer/Project/Business Processes/Folder/start.ivp"
],
"sorting": "BY_ALPHABETICALLY",
}
],
"permissions": [
"Everybody"
],
"isTopMenu": true
},
{
"id": "C3C",
"version": "12.0.0",
"titles": [
{
"locale": "en",
"value": "Tasks"
}
],
"icon": "fa fa-check-square-o",
"widgets": [
{
"type": "task 2",
"id": "C3C",
"names": [
{
"locale": "en",
"value": "Tasks 2"
}
],
"layout": {
"x": 0,
"y": 0,
"w": 12,
"h": 10
},
"isTopMenu": true,
}
],
"permissions": [
"Everybody"
]
}
]