Hi Team
I have task 1/ Task2/ task3/ Task4
Task1
Task1 has Child Task2
Task2 has Child Task3
Task4
And Task4 having predecessor Task2,
On double click of Task3 I am able to open dialog with selected activities data now I have an issue like I
have modified efforts of Task3 using dialog functionality, Task2/Task1 efforts are updated as they are parent.
How can I find parents of selected activity and that activity having predecessor which are effected.(Not Task4 data)?
how can I find out effected activities by changing duration/ start-end-date?
var $ganttTableWidget = $ganttTable.data("GanttTable");
$ganttTable.bind("dblclick", function (event) {
dblClickEventHandler(event);
});
var dblClickEventHandler = function (event) {
var $targetElement = $(event.target);
var $tr = $targetElement.closest("tr");
actview = $tr[0]["data-grid-item"];
var activity = actview.Activity;
}
Regards
Shyam