Hi
If I parse data to the gantt chart it loads correctly and I am able to use the chart accordingly. If I then use the clearAll() method and parse a new set of tasks (that don’t contain a previously selected task) to the chart I am unable to open a lightbox for any of the new tasks if I opened one previously before using the clearAll() method.
Example:
gantt.parse(tasks);
//Use the tool and open a lightbox for the a random task.
gantt.clearAll();
gantt.parse(new_tasks);
//... unable to open a lightbox by double clicking on a task
Error:
0x800a138f - JavaScript runtime error: Unable to get property ‘nextSibling’ of undefined or null reference
Anyone have a work around for this? Thanks