Basic implementation for UnlinkedDependencyComponent
* This components will be used when creating dependencies on a project instead of DependencyComponent (which has a counterpart on the model) FEA: ItEr02S03MigracionZK5
This commit is contained in:
parent
ada3bd15e8
commit
688a2d3564
1 changed files with 11 additions and 1 deletions
|
|
@ -246,4 +246,14 @@ ganttz.DependencyComponent = zk.$extends(ganttz.DependencyComponentBase,{
|
|||
this._origin = jq('#' + this.getIdTaskOrig());
|
||||
this._destination = jq('#' + this.getIdTaskEnd());
|
||||
}
|
||||
},{});
|
||||
},{});
|
||||
|
||||
ganttz.UnlinkedDependencyComponent = zk.$extends(ganttz.DependencyComponentBase,{
|
||||
bind_ : function(){
|
||||
this.$supers('bind_', arguments);
|
||||
}
|
||||
})
|
||||
|
||||
zk.afterLoad('ganttz',function(){
|
||||
ganttz.UnlinkedDependencyComponent.molds = ganttz.DependencyComponent.molds;
|
||||
})
|
||||
Loading…
Add table
Reference in a new issue