Hi,
I defined a dashboard page where I want to use ContentEngine , OverviewEngine , and TreeEngine to load different content. However, the data for the tree is not loading, and it seems that the request is not being sent. When I remove the OverviewEngine , the tree works as expected. It also seems that having two different overviews on the same dashboard doesn’t work either. Are there any limitations in this regard?
This is the request that simply isn’t sent when I integrate the OverviewEngine , but is sent correctly when I remove it:
[
{
"jsonrpc": "2.0",
"method": "QUERY",
"id": "tree",
"params": {
"query": {
"targetDocumentModel": "Location_DM",
"projectionName": "document",
"constraint": {
"operator": "not",
"operand": {
"operator": "has",
"relationshipModel": "UserLocation",
"targetRole": "Location",
"maxDepth": 0
}
},
"paging": {
"pageNumber": 0,
"pageSize": 100
},
"links": [
{
"relationshipModel": "UserLocation",
"targetRole": "User",
"maxDepth": 2,
"fields": [
"/user/username"
]
}
]
}
}
}
]
This is an excerpt from the PreviewApp_AM.json;
[
{
"layout": {
"settings": {
"rows": [
{
"columns": [
{
"width": {
"sm": 12,
"md": 12,
"lg": 6
}
},
{
"width": {
"sm": 12,
"md": 12,
"lg": 6
},
"rows": [
{
"columns": [
{
"width": {
"sm": 12,
"md": 12,
"lg": 12
}
}
]
},
{
"columns": [
{
"width": {
"sm": 12,
"md": 12,
"lg": 12
}
}
]
}
]
}
]
}
]
},
"name": "Dashboard"
},
"type": "REGION_CLEAR"
},
{
"type": "VIEW_ADD",
"name": "ContentEngine",
"models": [
{
"modelType": "content",
"name": "WelcomePage_CM"
}
]
},
{
"type": "VIEW_ADD",
"name": "OverviewEngine",
"models": [
{
"modelType": "overview",
"name": "UserAssignedProjects_OM"
}
]
},
{
"type": "VIEW_ADD",
"name": "TreeEngine",
"models": [
{
"modelType": "tree",
"name": "Location_TM"
}
]
}
]
Thanks for your support!
Foued

