Hi
I'm having some issues with a very big organisation chart (it contains about 3500 items in 1700 groups).
1. The first issue is that it takes a long time to load (about 20 seconds untill the control displays on the page). Is this normal for charts this size or should this be faster?
2. When I drill down and go back to the parent level, some errors occur. I noticed while debugging that the following line returns null, which then makes the rest of the javascript fail. This line is located in the pageLoad() method, so as I understand all controls should be initialized at the moment the line below is executed. I checked using the developer tools in IE and the control is still visible in the markup.
var orgChart = $find("<%=MyOrgChartControl.ClientID%>");
This only happens after a postback. So the initial request never returns an error. The weird thing is that it does not happen all the time, I can for example do 1 postback (drill down) without it failing, but during the next postback (go to parent level) the error occurs...
Do you guys have any idea on what might be causing this issue? Any help would be much appreciated!
Kind regards
Jens