Lines Matching refs:columnName

17432 				var columnName = cell.getAttribute("data-column-name");
17436 columnName: columnName
17443 function _getEditorPosition(itemId, columnName) { argument
17451 if (cols[i].name == columnName) {
17465 function findVisibleIndex(grid, columnName) { argument
17468 if(columns[i].name == columnName){
17475 function _createPlaceholder(itemId, columnName) { argument
17476 var pos = _getEditorPosition(itemId, columnName);
17480 el.setAttribute("data-column-name", columnName);
17482 var visibleIndex = findVisibleIndex(grid, columnName);
17507 getEditorConfig: function (columnName) { argument
17508 var column = grid.getColumn(columnName);
17546 columnName: this._columnName
17550 startEdit: function(itemId, columnName) { argument
17559 var editorState = {id: itemId, columnName: columnName}; property
17570 this.show(editorState.id, editorState.columnName);
17578 show: function (itemId, columnName) { argument
17582 var editorState = {id: itemId, columnName: columnName}; property
17584 var column = grid.getColumn(editorState.columnName);
17591 var placeholder = _createPlaceholder(editorState.id, editorState.columnName);
17597 this._columnName = editorState.columnName;
17609 columnName = state.columnName;
17611 var column = grid.getColumn(columnName);
17613 var editorConfig = this.getEditorConfig(columnName);
17664 columnName = this._columnName;
17685 this.callEvent("onEditEnd", [{id: itemId, columnName: columnName}]); property
17694 columnName = this._columnName;
17701 var editorConfig = this.getEditorConfig(columnName);
17704 columnName: columnName, property
17709 …if (this._editor.is_valid(editorState.newValue, editorState.id, editorState.columnName, this._plac…
17719 this._editor.save(itemId, grid.getColumn(columnName), this._placeholder);
17732 var columnName = nextColumn ? nextColumn.name : null;
17733 if(columnName){
17734 while(columnName && !this.getEditorConfig(columnName)){
17735 columnName = this._findEditableCell(start + direction, direction);
17737 return columnName;
18341 if (cell && controller.getEditorConfig(cell.columnName)) {
18342 if (controller.isVisible() && state.id == cell.id && state.columnName == cell.columnName) {
18345 controller.startEdit(cell.id, cell.columnName);
18364 if (cell && controller.isVisible() && cell.columnName == state.columnName) {
18469 var columnName = activeCell.columnName;
18474 if(editorState.id == id && editorState.columnName === columnName) {
18486 if (activeCell && !(activeCell.id == state.id && activeCell.columnName == state.columnName)) {
18510 if(cell && controller.isVisible() && cell.columnName == state.columnName){
18523 if (cell && controller.getEditorConfig(cell.columnName)) {
18524 if(controller.isVisible() && state.id == cell.id && state.columnName == cell.columnName){
18527 controller.startEdit(cell.id, cell.columnName);
18540 var hasEditor = activeCell ? controller.getEditorConfig(activeCell.columnName) : false;
18554 self.startEdit(activeCell.id, activeCell.columnName);
18581 self.startEdit(activeCell.id, activeCell.columnName);
18588 self.startEdit(activeCell.id, activeCell.columnName);
18604 keyNav.focus({type:"taskCell", id: newState.id, column:newState.columnName});
18630 self.startEdit(activeCell.id, activeCell.columnName);