Lines Matching refs:itemId
10687 var itemId = branch[i];
10688 code.call(this, itemId);
10689 if (this._branches[itemId])
10690 this._traverseBranches(code, itemId);
17278 function(itemId, item){ argument
17281 if(layers.filters[i](itemId, item) === false){
17443 function _getEditorPosition(itemId, columnName) { argument
17444 var top = grid.getItemTop(itemId);
17445 var height = grid.getItemHeight(itemId);
17475 function _createPlaceholder(itemId, columnName) { argument
17476 var pos = _getEditorPosition(itemId, columnName);
17479 el.setAttribute(grid.$config.item_attribute, itemId);
17550 startEdit: function(itemId, columnName) { argument
17555 if(!store.exists(itemId)){
17559 var editorState = {id: itemId, columnName: columnName};
17560 if (gantt.isReadonly(store.getItem(itemId))) {
17578 show: function (itemId, columnName) { argument
17582 var editorState = {id: itemId, columnName: columnName};
17608 var itemId = state.id,
17612 var item = store.getItem(itemId);
17620 value = store.getItem(itemId);
17623 this._editor.set_value(value, itemId, column, this._placeholder);
17663 var itemId = this._itemId,
17685 this.callEvent("onEditEnd", [{id: itemId, columnName: columnName}]);
17693 var itemId = this._itemId,
17696 if(!store.exists(itemId)) {
17700 var item = store.getItem(itemId);
17703 id: itemId,
17717 store.updateItem(itemId);
17719 this._editor.save(itemId, grid.getColumn(columnName), this._placeholder);
23857 function _combine_item_class(basic, template, itemId, view) { argument
23865 var task = gantt.getTask(itemId);
23883 if (cfg.select_task && gantt.isSelectedTask(itemId)) {
23887 if (itemId == state.drag_id) {
23894 if (state.link_source_id == itemId)
23897 if (state.link_target_id == itemId)
23914 var allowDrag = gantt.isLinkAllowed(from_id, itemId, from_start, to_start);
24020 function detachRenderedCell(itemId, columnIndex){ argument
24021 if(renderedCells[itemId] && renderedCells[itemId][columnIndex] &&
24022 renderedCells[itemId][columnIndex].parentNode
24024 renderedCells[itemId][columnIndex].parentNode.removeChild(renderedCells[itemId][columnIndex]);