Hi all,
I made a proof-of-concept for a demo for a client with the Gantt chart control previously.
I am now moving on and implementing the "full version", for some reason after I make a HTTP get to my web api controller, the page appears to hang indefinitely.
The JSON I returning for the datasource of the Gantt control is valid (as it worked fine with the proof-of-concept version).
Here is a small snippet of the JSON structure (removed sensitive information):
[
{
"id": 1,
"activityId": "1300",
"activityName": "Start",
"code": "...",
"name": "...",
"indicator": "",
"predecessorId": "",
"startDate": "04/03/2019",
"endDate": "19/04/2019",
"children": [
{
"id": 3,
"activityId": "1301",
"activityName": "...",
"code": "...",
"name": "...",
"indicator": "",
"predecessorId": "1FS",
"startDate": "04/03/2019",
"endDate": "05/03/2019",
"children": []
}
]
},
{
"id": 26,
"activityId": "1500",
"activityName": "...",
"code": "...",
"name": "...",
"indicator": "...",
"predecessorId": "60FS",
"startDate": "27/04/2019",
"endDate": "06/05/2019",
"children": [
{
"id": 22,
"activityId": "1325",
"activityName": "...",
"code": "...",
"name": "...",
"indicator": "",
"predecessorId": "26FS",
"startDate": "27/04/2019",
"endDate": "27/04/2019",
"children": []
},
{
"id": 28,
"activityId": "1511",
"activityName": "...",
"code": "...",
"name": "...",
"indicator": "",
"predecessorId": "26FS,22FS",
"startDate": "27/04/2019",
"endDate": "27/04/2019",
"children": []
}
]
}
]
If anyone can tell me why the control cannot render I would greatly appreciate it.
Thank you
Attachment:
vue_2edbff1e.zip