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:
Farruco Sanjurjo 2010-09-02 12:13:49 +02:00
parent ada3bd15e8
commit 688a2d3564

View file

@ -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;
})