Overwrote appendChild method for DependencyList widget-class
* We have to overwrite it if we want to append child to the #listdependencies inner div FEA: ItEr02S03MigracionZK5
This commit is contained in:
parent
cd8d9364a0
commit
3675988e04
1 changed files with 5 additions and 1 deletions
|
|
@ -1,3 +1,7 @@
|
|||
zk.$package("ganttz");
|
||||
|
||||
ganttz.DependencyList = zk.$extends(zk.Widget, {});
|
||||
ganttz.DependencyList = zk.$extends(zk.Widget, {
|
||||
appendChild : function(child){
|
||||
jq('#listdependencies').append(child);
|
||||
}
|
||||
});
|
||||
Loading…
Add table
Reference in a new issue