Searched refs:newCell (Results 1 – 8 of 8) sorted by relevance
/plugin/diagramsnet/lib/js/diagramly/ |
H A D | DiffSync.js | 793 if (newCell == null) 806 temp.previous = (newCell.prev != null) ? newCell.prev.getId() : ''; 846 inserted.push(this.getJsonForCell(newCell.cell, newCell.prev)); 1046 diff.parent = (newCell.parent != null) ? newCell.parent.getId() : ''; 1053 diff.source = (newCell.source != null) ? newCell.source.getId() : ''; 1060 diff.target = (newCell.target != null) ? newCell.target.getId() : ''; 1084 diff.value = (newCell.value != null) ? newCell.value : null; 1120 typeof newCell[key] !== 'function' && oldCell[key] != newCell[key]) 1122 diff[key] = (newCell[key] === undefined) ? null : newCell[key]; 1131 typeof newCell[key] !== 'function' && oldCell[key] != newCell[key]) [all …]
|
H A D | EditorUi.js | 13137 var newCell = new mxCell(label, new mxGeometry(x0, y, 13139 newCell.vertex = true; 13140 newCell.id = id; 13149 var tempLabel = labels[newCell.getAttribute(labelname)]; 13153 graph.labelChanged(newCell, tempLabel); 13163 newCell.style = tempStyle; 13167 graph.setAttributeForCell(newCell, 'placeholders', '1'); 13168 newCell.style = graph.replacePlaceholders(newCell, newCell.style, vars); 13172 graph.model.setValue(cell, newCell.value); 13173 graph.model.setStyle(cell, newCell.style); [all …]
|
/plugin/mobiletable/ |
H A D | mobileTable.js | 85 const newCell = cell.cloneNode(false) 87 newCell.colSpan = 2 90 if (moveContent(cell, newCell)) { 91 cellMap.set(cell, newCell) 93 tr.appendChild(newCell) 95 return newCell 100 newCell.colSpan = 2 102 newCell.className = cell.className 104 if (moveContent(cell, newCell)) { 105 cellMap.set(cell, newCell) [all …]
|
/plugin/ckgdoku/ckeditor/plugins/table/dialogs/ |
H A D | table.js.unc | 167 var newCell = theRow.getChild( i ); 168 if ( newCell.type == CKEDITOR.NODE_ELEMENT ) { 169 newCell.renameNode( 'td' ); 170 newCell.removeAttribute( 'scope' ); 181 newCell = new CKEDITOR.dom.element( table.$.rows[ row ].cells[ 0 ] ); 182 newCell.renameNode( 'th' ); 183 newCell.setAttribute( 'scope', 'row' ); 192 newCell = new CKEDITOR.dom.element( row.$.cells[ 0 ] ); 193 newCell.renameNode( 'td' ); 194 newCell.removeAttribute( 'scope' );
|
/plugin/ckgedit/ckeditor/plugins/table/dialogs/ |
H A D | table.js.unc | 167 var newCell = theRow.getChild( i ); 168 if ( newCell.type == CKEDITOR.NODE_ELEMENT ) { 169 newCell.renameNode( 'td' ); 170 newCell.removeAttribute( 'scope' ); 181 newCell = new CKEDITOR.dom.element( table.$.rows[ row ].cells[ 0 ] ); 182 newCell.renameNode( 'th' ); 183 newCell.setAttribute( 'scope', 'row' ); 192 newCell = new CKEDITOR.dom.element( row.$.cells[ 0 ] ); 193 newCell.renameNode( 'td' ); 194 newCell.removeAttribute( 'scope' );
|
/plugin/wysiwyg/fckeditor/editor/_source/internals/ |
H A D | fcktablehandler.js | 463 var newCell = refCell.ownerDocument.createElement( 'td' ) ; 465 FCKTools.AppendBogusBr( newCell ) ; 472 tableMap[r][i] = newCell ; 542 var newCell = FCK.EditorDocument.createElement( 'td' ) ; 543 newCell.rowSpan = Math.floor( currentRowSpan / 2 ) ; 545 FCKTools.AppendBogusBr( newCell ) ; 546 currentCell.parentNode.parentNode.rows[newCellRowIndex].insertBefore( newCell, insertMarker ) ; 574 var newCell = FCK.EditorDocument.createElement( 'td' ) ; 576 FCKTools.AppendBogusBr( newCell ) ; 577 newRow.appendChild( newCell ) ;
|
/plugin/diagramsnet/lib/js/grapheditor/ |
H A D | Dialogs.js | 2223 var newCell = null; 2227 newCell = graph.cloneCell(selectionLayer); 2228 graph.cellLabelChanged(newCell, mxResources.get('untitledLayer')); 2229 newCell.setVisible(true); 2230 newCell = graph.addCell(newCell, graph.model.root); 2231 graph.setDefaultParent(newCell); 2238 if (newCell != null && !graph.isCellLocked(newCell)) 2240 graph.selectAll(newCell);
|
H A D | Graph.js | 3825 var newCell = this.model.getCell(cells[i].id); 3827 if (newCell != null) 3829 temp.push(newCell);
|