Gibt den WBS-Code (die Gliederungsnummer) einer Aufgabe zurück
task | Task | das Objekt einer Aufgabe |
string | der WBS-Code der Aufgabe im Gantt |
gantt.init("gantt_here");
gantt.parse({
"data":[
{"id":1, "text":"Projekt #1", "start_date":"28-03-2013", "duration":"11",
"parent":"0", "open": true},
{"id":2, "text":"Aufgabe #1", "start_date":"01-04-2013", "duration":"18", "parent":"1"},
{"id":3, "text":"Aufgabe #2", "start_date":"02-04-2013", "duration":"8", "parent":"1"}
],
"links":[]
});
const wbs_code = gantt.getWBSCode(gantt.getTask(3)) // -> gibt "1.2" zurück
hinzugefügt in Version 4.2