I am unable to get the connections to display when i retreive the gantt datasource from a db. the connections column shows [object][object] for the task in question but nothing appears in the gantt section.
my schema is:
[JsonPropertyName(“connections”)]
public object Connections
{
get; set;
} = Array.Empty<object>();
and i am populating the data as follows:
Connections = sc.EndIndex!=null?new List<Dictionary<string,int>>()
{
new Dictionary<string, int>()
{
{“target”,sc.EndIndex },{“type”,sc.Type}
}
}:””,
the connection was created and saved by the user dragging the connection lines in the gantt component.
What am i doing wrong?
please advise
-
This topic was modified 2 years, 8 months ago by johnm.