| /plugin/xlsx2dw/ |
| D | script.js | 55 row.forEach((cell, index) => { 57 value: cell?.value ?? "", 58 isEmpty: cell?.isEmpty ?? false, 59 isMerged: cell?.isMerged ?? false, 60 isMergedFirstColumn: cell?.isMergedFirstColumn ?? false, 62 isBold: cell?.isBold ?? false, 63 isItalic: cell?.isItalic ?? false, 64 isUnderline: cell?.isUnderline ?? false, 65 isStrike: cell?.isStrike ?? false, 66 alignmentHorizontal: cell?.alignmentHorizontal ?? "left", [all …]
|
| /plugin/diagramsnet/lib/plugins/webcola/ |
| D | mxWebColaAdaptor.js | 351 var cell = cells[id]; 352 var state = view.getState(cell); 354 var bounds = model.getGeometry(cell); 359 if (cell.isVertex() && this.isLeafOrCollapsed(cell) && activeVertices[cell.id]) 367 node.name = cell.value; 375 nodeCells[colaId] = cell; 382 var cell = cells[id]; 383 var state = view.getState(cell); 384 if (cell.isEdge() && cell.getTerminal(true) != null && cell.getTerminal(false) != null) 387 var terminal_id1 = inactiveToActiveMap[cell.source.id]; [all …]
|
| D | mxWebColaLayout.js | 114 var cell = cells[id]; 115 var state = view.getState(cell); 118 if (cell.isVertex()) { 119 var geometry = model.getGeometry(cell); 124 model.setGeometry(cell, geometry); 285 var cell = cells[id]; 286 var state = view.getState(cell); 289 if (cell.isVertex() && this.layout.isLeafOrCollapsed(cell)) 297 var geometry = model.getGeometry(cell); 307 this.originalGeometries.put(cell, geometry); [all …]
|
| /plugin/html2pdf/html2pdf/html2ps/ |
| D | css.vertical-align.inc.php | 14 function apply_cell(&$cell, $row_height, $row_baseline) { argument 20 function apply_cell(&$cell, $row_height, $row_baseline) { argument 26 function apply_cell(&$cell, $row_height, $row_baseline) { argument 32 function apply_cell(&$cell, $row_height, $row_baseline) { argument 33 $delta = max(0, ($row_height - $cell->get_real_full_height()) / 2); 35 $old_top = $cell->get_top(); 36 $cell->offset(0, -$delta); 37 $cell->put_top($old_top); 42 function apply_cell(&$cell, $row_height, $row_baseline) { argument 43 $delta = ($row_height - $cell->get_real_full_height()); [all …]
|
| D | box.table.row.php | 75 $cell =& $this->content[$i]; 78 $cell->offset(0, 80 $cell->get_top_margin()); 83 if ($cell->rowspan == 1) { 84 $va = $cell->get_css_property(CSS_VERTICAL_ALIGN); 86 $va_fun->apply_cell($cell, $height, $baseline); 89 $cell->put_full_height($height); 97 $cell = $this->content[$i]; 98 if ($cell->rowspan == 1) { 99 $baseline = max($baseline, $cell->get_cell_baseline()); [all …]
|
| /plugin/diagramsnet/lib/js/diagramly/ |
| D | Trees.js | 57 Graph.prototype.foldTreeCell = function(collapse, cell) argument 64 this.traverse(cell, true, mxUtils.bind(this, function(vertex, edge) 73 if (vertex != cell && (edge == null || treeEdge)) 80 (vertex == cell || !this.model.isCollapsed(vertex)); 83 this.model.setCollapsed(cell, collapse); 99 Graph.prototype.isTreeEdge = function(cell) argument 101 return !this.isEdgeIgnored(cell); 107 Graph.prototype.getTreeEdges = function(cell, parent, incoming, outgoing, includeLoops, recurse) argument 109 …odel.filterCells(this.getEdges(cell, parent, incoming, outgoing, includeLoops, recurse), mxUtils.b… argument 111 return this.isTreeEdge(cell); [all …]
|
| D | DiffSync.js | 287 var cell = model.getCell(id); 289 if (cell != null) 291 var parent = model.getParent(cell); 371 var cell = model.getCell(diff[EditorUi.DIFF_REMOVE][i]); 373 if (cell != null) 375 model.remove(cell); 400 var cell = model.getCell(cellDiff.id); 402 if (cell != null) 404 model.setTerminal(cell, model.getCell(cellDiff.source), true); 405 model.setTerminal(cell, model.getCell(cellDiff.target), false); [all …]
|
| /plugin/diagramsnet/lib/plugins/ |
| D | tickets.js | 141 function updateStyle(cell, ticket) argument 147 var prev = cell.style; 149 cell.style = mxUtils.setStyle(cell.style, 'issueType', type); 150 cell.style = mxUtils.setStyle(cell.style, 'issueStatus', status); 151 cell.style = mxUtils.setStyle(cell.style, 'issueStatusWidth', sw); 152 cell.style = mxUtils.setStyle(cell.style, 'issuePriority', priority); 154 return prev != cell.style; 169 function updateData(cell, ticket) argument 175 var prev = cell.value.getAttribute(key); 180 cell.value.setAttribute(key, value); [all …]
|
| D | update.js | 210 var cell = graph.model.cells[id]; 212 if (graph.model.isEdge(cell)) 215 var state = graph.view.getState(cell); 220 update.setAttribute('id', cell.id); 223 update.setAttribute('style', cell.style + ';strokeColor=red;strokeWidth=' + 230 update.setAttribute('id', cell.id); 233 update.setAttribute('style', cell.style + ';strokeColor=black;strokeWidth=;'); 237 else if (graph.model.isVertex(cell)) 241 if (cell.value != null && typeof(cell.value) == 'object' && 242 cell.value.getAttribute('update') == '1') [all …]
|
| D | explore.js | 13 ui.menus.createPopupMenu = function(menu, cell, evt) argument 104 graph.getCursorForCell = function(cell) argument 106 if (this.model.isVertex(cell)) 138 var cell = me.getCell(); 140 if (cell != null && cell != graph.rootCell) 142 load(graph, cell); 154 var cell = graph.importCells([selectionCell])[0]; 155 cell.sourceCellId = selectionCell.id; 156 cell.geometry.x = cx - cell.geometry.width / 2; 157 cell.geometry.y = cy - cell.geometry.height / 2; [all …]
|
| D | animation.js | 40 function mapCell(cell, clone, mapping) argument 43 mapping[cell.id] = clone; 45 var childCount = cell.getChildCount(); 49 mapCell(cell.getChildAt(i), clone.getChildAt(i), mapping); 75 var cell = graph.getModel().cells[id]; 77 if (graph.getModel().isVertex(cell) || graph.getModel().isEdge(cell)) 79 graph.setCellStyles('opacity', '0', [cell]); 80 graph.setCellStyles('noLabel', '1', [cell]); 112 var cell = mapping[tokens[1]]; 114 if (cell != null) [all …]
|
| /plugin/sqlraw/ |
| D | test2.php | 35 foreach ($element->find('th') as $cell) { 40 foreach ($element->find('td') as $cell) { 67 foreach ($element->find('th') as $cell) { 68 …if (strpos(trim($cell->class), 'actions') === false && strpos(trim($cell->class), 'checker') === f… 69 parseCell($cell,$mdTable,$rowPos,$colPos); 74 foreach ($element->find('td') as $cell) { 75 …if (strpos(trim($cell->class), 'actions') === false && strpos(trim($cell->class), 'checker') === f… 76 parseCell($cell,$mdTable,$rowPos,$colPos); 106 function parseCell(&$cell,&$mdTable,&$rowPos,&$colPos) { argument 115 $mdTable[$rowPos][$colPos] = $cell->plaintext; [all …]
|
| /plugin/diagramsnet/lib/js/diagramly/sidebar/ |
| D | Sidebar-ER.js | 59 var cell = new mxCell('List', new mxGeometry(0, 0, 160, 110), 61 cell.vertex = true; 62 cell.insert(sb.cloneCell(row, 'Item 1')); 63 cell.insert(sb.cloneCell(row, 'Item 2')); 64 cell.insert(sb.cloneCell(row, 'Item 3')); 66 …return sb.createVertexTemplateFromCells([cell], cell.geometry.width, cell.geometry.height, 'List'); 74 …var cell = new mxCell(row.value, new mxGeometry(0, 0, 90, row.geometry.height), 'shape=partialRect… 75 cell.vertex = true; 81 cell.insert(cell1); 83 …return sb.createVertexTemplateFromCells([cell], cell.geometry.width, cell.geometry.height, 'List I… [all …]
|
| /plugin/issuetracker/ |
| D | tablekit.js | 71 getHeaderCells : function(table, cell) { argument 72 if(!table) { table = $(cell).up('table'); } 79 getCellIndex : function(cell) { argument 80 return $A(cell.parentNode.cells).indexOf(cell); 85 getCellText : function(cell, refresh) { argument 86 if(!cell) { return ""; } 87 var data = TableKit.getCellData(cell); 89 data.textContent = cell.textContent ? cell.textContent : cell.innerText; 94 getCellData : function(cell) { argument 96 if(!cell.id) { [all …]
|
| /plugin/fho/ |
| D | script.js | 25 cells.forEach(cell => { 26 cell.addEventListener("click", function() { 27 setStatusColor(cell, selectedColor); 30 cell.addEventListener("mousedown", function() { 32 currentRow = cell.parentElement; // Speichert die aktuelle Zeile 33 setStatusColor(cell, selectedColor); 36 cell.addEventListener("mouseover", function() { 37 if (isDragging && cell.parentElement === currentRow) { 38 setStatusColor(cell, selectedColor); 42 cell.addEventListener("mouseup", function() { [all …]
|
| /plugin/diagramsnet/lib/plugins/trees/ |
| D | trees.js | 29 function isTreeCell(cell) argument 33 if (cell != null) 35 graph.traverse(cell, true, function(vertex) 47 ui.menus.createPopupMenu = function(menu, cell, evt) argument 53 var cell = graph.getSelectionCell(); 54 var sib = graph.getOutgoingEdges(cell); 64 if (cell.getAttribute('treeRoot') != '1') 76 var cell = graph.getSelectionCell(); 77 var sib = graph.getOutgoingEdges(cell); 98 var cell = graph.getSelectionCell(); [all …]
|
| /plugin/statdisplay/helper/ |
| D | table.php | 170 $this->cell($data['hits'][$by][$idx]['count']); 171 … $this->cell($this->pct($data['hits'][$by][$idx]['count'], $data['hits']['all']['count'])); 173 $this->cell($data['media'][$by][$idx]['count']); 174 … $this->cell($this->pct($data['media'][$by][$idx]['count'], $data['media']['all']['count'])); 176 $this->cell($data['page'][$by][$idx]['count']); 177 … $this->cell($this->pct($data['page'][$by][$idx]['count'], $data['page']['all']['count'])); 179 $this->cell($data['hits'][$by][$idx]['visitor']); 180 … $this->cell($this->pct($data['hits'][$by][$idx]['visitor'], $data['hits']['all']['visitor'])); 182 $this->cell(filesize_h($data['hits'][$by][$idx]['bytes'])); 183 … $this->cell($this->pct($data['hits'][$by][$idx]['bytes'], $data['hits']['all']['bytes'])); [all …]
|
| /plugin/mobiletable/ |
| D | mobileTable.js | 36 for (let cell of row.children) { 37 const colSpan = cell.colSpan 44 } else if (hideHeadings.includes(cell.innerText.trim())) { 48 td.innerHTML = cell.innerHTML 60 const isTextCell = cell => cell.childNodes.length === 1 && cell.lastChild.nodeName === "#text" 84 const addCell = (tr, cell, colSpan) => { 85 const newCell = cell.cloneNode(false) 90 if (moveContent(cell, newCell)) { 91 cellMap.set(cell, newCell) 98 const addHeaderCell = (tr, cell) => { [all …]
|
| /plugin/dtable/ |
| D | helper.php | 107 foreach ($array_line as $cell) 109 if ($cell[0] == 'tableheader_open') 111 $line .= '^'.$cell[1]; 114 $line .= '|'.$cell[1]; 147 public $cell = 0; variable in helper_plugin_dtable_handler 168 $this->calls[$this->row][0][$this->cell] = array(1, 1, $type, ''); 182 $this->calls[$this->row][0][$this->cell][3] .= $match; 188 $this->calls[$this->row][0][$this->cell][3] .= $match; 190 $this->calls[$this->row][0][$this->cell][3] .= $match; 193 while (preg_match('/^\s*:::\s*$/', $this->calls[$row][0][$this->cell][3]) && $row > 0) { [all …]
|
| /plugin/html2pdf/html2pdf/html2ps/unittest/ |
| D | test.table.top-boundary.php | 22 $cell = $tree->get_element_by_id('cell'); 25 $cell->get_top_margin(), 27 $text = $cell->content[0]->content[0]; 29 $cell->get_top_margin(), 51 $cell = $tree->get_element_by_id('cell'); 54 $cell->get_top_margin(), 56 $text = $cell->content[0]->content[0]; 58 $cell->get_top_margin(),
|
| /plugin/jdraw/src/com/mxgraph/examples/swing/ |
| D | UserObject.java | 64 public boolean isCellEditable(Object cell) in UserObject() 66 return !getModel().isEdge(cell); in UserObject() 70 public String convertValueToString(Object cell) in UserObject() 72 if (cell instanceof mxCell) in UserObject() 74 Object value = ((mxCell) cell).getValue(); in UserObject() 101 return super.convertValueToString(cell); in UserObject() 105 public void cellLabelChanged(Object cell, Object newValue, in UserObject() 108 if (cell instanceof mxCell && newValue != null) in UserObject() 110 Object value = ((mxCell) cell).getValue(); in UserObject() 137 super.cellLabelChanged(cell, newValue, autoSize); in UserObject() [all …]
|
| /plugin/diagramsnet/lib/js/grapheditor/ |
| D | Sidebar.js | 778 Sidebar.prototype.cloneCell = function(cell, value) argument 780 var clone = cell.clone(); 1198 var cell = new mxCell('List', new mxGeometry(0, 0, 140, 120), 1201 cell.vertex = true; 1202 cell.insert(sb.cloneCell(field, 'Item 1')); 1203 cell.insert(sb.cloneCell(field, 'Item 2')); 1204 cell.insert(sb.cloneCell(field, 'Item 3')); 1206 …return sb.createVertexTemplateFromCells([cell], cell.geometry.width, cell.geometry.height, 'List'); 1214 var cell = new mxCell('', new mxGeometry(0, 0, 50, 50), 'curved=1;endArrow=classic;html=1;'); 1215 cell.geometry.setTerminalPoint(new mxPoint(0, 50), true); [all …]
|
| D | Graph.js | 304 this.isHtmlLabel = function(cell) argument 306 var style = this.getCurrentCellStyle(cell); 334 if (this.model.isEdge(state.cell)) 337 start.selected = this.isCellSelected(state.cell); 348 var handler = this.selectionCellsHandler.getHandler(state.cell); 358 var handler = this.selectionCellsHandler.getHandler(state.cell); 368 if (this.isTableCell(state.cell) && !this.isCellSelected(state.cell)) 370 var row = this.model.getParent(state.cell); 375 var geo = this.getCellGeometry(state.cell); 382 … this.model.getChildAt(row, 0) != state.cell) || mxUtils.intersects(box, new mxRectangle( [all …]
|
| /plugin/wordimport/docx/ |
| D | Table.php | 23 foreach ($cells as $cell) { 24 $cell = new TableCell($this->docx, $cell); 25 $cell->parse(); 26 $tableRow[] = $cell; 38 foreach ($row as $cell) { 39 $text .= $cell->__toString();
|
| /plugin/wysiwyg/fckeditor/editor/_source/internals/ |
| D | fcktablehandler.js | 192 FCKTableHandler.InsertCell = function( cell, insertBefore ) argument 215 FCKTableHandler.DeleteCell = function( cell ) argument 218 if ( cell.parentNode.cells.length == 1 ) 221 FCKTableHandler.DeleteRows( FCKTools.GetElementAscensor( cell, 'TR' ) ) ; 226 cell.parentNode.removeChild( cell ) ; 582 FCKTableHandler._GetCellIndexSpan = function( tableMap, rowIndex, cell ) argument 591 if ( oRow[c] == cell ) 599 FCKTableHandler._GetCellLocation = function( tableMap, cell ) argument 605 if ( tableMap[i][c] == cell ) return [i,c]; 692 var cell = tableMap[i][j] ; [all …]
|