Welcome page¶
The page of Insight Mobile and Insight Explorer contains the navigation points with modules and use cases. The number of entries in a use case can be displayed. In addition, a pie chart can be displayed according to properties.
Show the count of entries in the use case
This configuration must be made in the clientProperties of the tree.
"clientProperties": {
"welcomePage": {
"count": true
}
}
Show a pie chart according to properties.
A pie chart can be displayed according to properties. For this feature, all root data of the use case must be fetched. Use it carefully.
"clientProperties": {
"welcomePage": {
"chart": {
"type": "pie",
"label": "${STATUS}",
"value": "${STATUS}",
"legend": {
"position": "bottom"
},
"colors": {
"WMATL": "#FF0000",
"WAPPR": "#0000ff",
"INPRG": "#008000"
}
}
}
}
Menu entries can be shown at welcome page
Show this menu action on the welcome page. Is only supported for tree-/top-level menus.
"menus": [{
"label": "New workorder",
"action": "create",
"icon": "icon-plus",
"actionValues": [{
"_tree": "my-workorder",
"_node": "workorder"
}],
"clientProperties": {
"welcomePage": true
}
}]