Added missing $supers call at overwrote method
* As this $supers call was missing the children wasn't added to the parent's children array, it was just inserted at the DOM FEA: ItEr02S03MigracionZK5
This commit is contained in:
parent
e2a3b7d1d8
commit
4baf3efc0a
1 changed files with 2 additions and 0 deletions
|
|
@ -2,6 +2,8 @@ zk.$package("ganttz");
|
|||
|
||||
ganttz.DependencyList = zk.$extends(zk.Widget, {
|
||||
appendChild : function(child){
|
||||
//true for ignoring DOM insertion
|
||||
this.$supers('appendChild',[child,true]);
|
||||
jq('#listdependencies').append(child);
|
||||
}
|
||||
});
|
||||
Loading…
Add table
Reference in a new issue