Lines Matching defs:oldId

9289         this._dataProcessorHandlers.push(gantt.attachEvent("onTaskIdChange", function (oldId, newId) {
9445 gantt._change_id = function (oldId, newId) {
9447 this.changeLinkId(oldId, newId);
9450 this.changeTaskId(oldId, newId);
9698 _changeIdInner: function(oldId, newId){
9699 if(this.pull[oldId])
9700 this.pull[newId] = this.pull[oldId];
9702 var visibleOrder = this._searchVisibleOrder[oldId];
9705 this[this.$find(oldId)] = newId;
9708 delete this._searchVisibleOrder[oldId];
9710 //this.visibleOrder[this.visibleOrder.$find(oldId)]=newId;
9711 delete this.pull[oldId];
9713 changeId: function(oldId, newId){
9714 this._changeIdInner(oldId, newId);
9716 this.callEvent("onIdChange", [oldId, newId]);
9970 tasksStore.attachEvent("onIdChange", function(oldId, newId){
9971 gantt._update_flags(oldId, newId);
10044 linksStore.attachEvent("onBeforeIdChange", function(oldId, newId){
10045 sync_link_delete(gantt.mixin({id:oldId}, gantt.$data.linksStore.getItem(newId)));
10371 function refreshId(renders, oldId, newId, item) {
10373 renders[i].change_id(oldId, newId);
10377 store.attachEvent("onIdChange", function(oldId, newId){
10382 store.callEvent("onBeforeIdChange", [oldId, newId]);
10388 refreshId(renderer.getLayers(), oldId, newId, store.getItem(newId));
10495 store.attachEvent("onIdChange", function(oldId, newId) {
10496 if (store.getSelectedId() == oldId) {
10498 store.unselect(oldId);
10665 _changeIdInner: function(oldId, newId){
10666 var children = this.getChildren(oldId);
10667 var visibleOrder = this._searchVisibleOrder[oldId];
10669 DataStore.prototype._changeIdInner.call(this, oldId, newId);
10673 this._replace_branch_child(parent, oldId, newId);
10679 delete this._branches[oldId];
17522 handlers.push(store.attachEvent("onIdChange", function(oldId, newId){
17523 if(self._itemId == oldId){