/plugin/html2pdf/html2pdf/html2ps/ |
H A D | css.vertical-align.inc.php | 35 $old_top = $cell->get_top(); 36 $cell->offset(0, -$delta); 37 $cell->put_top($old_top); 45 $old_top = $cell->get_top(); 46 $cell->offset(0, -$delta); 47 $cell->put_top($old_top); 55 $old_top = $cell->get_top(); 56 $cell->offset(0, -$delta); 57 $cell->put_top($old_top); 72 $cell->offset(0, -$delta); [all …]
|
H A 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) { 203 $cell =& $this->content[$i]; [all …]
|
/plugin/sqlraw/ |
H A 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… 74 foreach ($element->find('td') as $cell) { 75 …if (strpos(trim($cell->class), 'actions') === false && strpos(trim($cell->class), 'checker') === f… 115 $mdTable[$rowPos][$colPos] = $cell->plaintext; 117 if (isset($cell->rowspan)) { 119 for ($i=1; $i <= ($cell->rowspan)-1; $i++) { 124 if (isset($cell->colspan)) { [all …]
|
/plugin/issuetracker/ |
H A D | tablekit.js | 80 return $A(cell.parentNode.cells).indexOf(cell); 89 data.textContent = cell.textContent ? cell.textContent : cell.innerText; 96 if(!cell.id) { 346 while(!(cell.tagName && cell.tagName.match(/td|th/gi))) { 347 cell = cell.parentNode; 352 var cell; 412 cell = $(cell); 421 if(cell.id && TableKit.Sortable.types[cell.id]) { 625 var cell; 742 if(cell) { [all …]
|
/plugin/mobiletable/ |
H A D | mobileTable.js | 36 for (let cell of row.children) { 37 const colSpan = cell.colSpan 60 const isTextCell = cell => cell.childNodes.length === 1 && cell.lastChild.nodeName === "#text" 90 if (moveContent(cell, newCell)) { 91 cellMap.set(cell, newCell) 98 const addHeaderCell = (tr, cell) => { 104 if (moveContent(cell, newCell)) { 105 cellMap.set(cell, newCell) 113 let cell 119 cell = name.cloneNode(true) [all …]
|
/plugin/html2pdf/html2pdf/html2ps/unittest/ |
H A 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(),
|
H A D | test.table.column.width.php | 50 $cell =& $tree->get_element_by_id('container-cell'); 54 $this->assertTrue($cell->get_width() >= $table->get_width(), 56 $cell->get_width(), 67 $cell =& $tree->get_element_by_id('container-cell'); 71 $container_cell_width = $cell->get_width(); 72 $container_cell_min_width = $cell->content[0]->get_width(); 78 $cell_width = $cell1->get_width() + $cell2->get_width() + $cell->get_width();
|
/plugin/statdisplay/helper/ |
H A D | table.php | 160 $this->cell($data['hits'][$by][$idx]['count']); 166 $this->cell($data['page'][$by][$idx]['count']); 203 $this->cell($data['media']['all']['count'], 2); 208 $this->cell($data['page']['all']['count'], 2); 213 $this->cell($data['page']['all']['visitor'], 2); 264 $this->cell($count, 2); 307 $this->cell($month, 1, false); // Month 374 $this->cell($row); 376 $this->cell($val); 377 $this->cell($this->pct($count, $max)); [all …]
|
/plugin/dtable/ |
H A D | helper.php | 111 foreach ($array_line as $cell) 113 if ($cell[0] == 'tableheader_open') 115 $line .= '^'.$cell[1]; 118 $line .= '|'.$cell[1]; 151 public $cell = 0; variable in helper_plugin_dtable_handler 201 $this->calls[$row][0][$this->cell][1]++; 213 $this->cell = 0; 220 if ($this->calls[$this->row][0][$this->cell][3] == '' && $this->cell > 0) { 224 $this->cell++; 237 $this->calls[$this->row][0][$this->cell][3] .= "\n"; [all …]
|
/plugin/jdraw/src/com/mxgraph/examples/swing/ |
H A 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() 108 if (cell instanceof mxCell && newValue != null) in UserObject() 110 Object value = ((mxCell) cell).getValue(); in UserObject() 167 if (cell instanceof mxCell) in UserObject() 169 Object value = ((mxCell) cell).getValue(); in UserObject() [all …]
|
H A D | UserObject.java.bak | 58 public boolean isCellEditable(Object cell) 60 return !getModel().isEdge(cell); 64 public String convertValueToString(Object cell) 66 if (cell instanceof mxCell) 68 Object value = ((mxCell) cell).getValue(); 95 return super.convertValueToString(cell); 102 if (cell instanceof mxCell && newValue != null) 104 Object value = ((mxCell) cell).getValue(); 161 if (cell instanceof mxCell) 163 Object value = ((mxCell) cell).getValue(); [all …]
|
H A D | Port.java | 35 public boolean isPort(Object cell) in Port() 37 mxGeometry geo = getCellGeometry(cell); in Port() 44 public String getToolTipForCell(Object cell) in Port() 46 if (model.isEdge(cell)) in Port() 48 return convertValueToString(model.getTerminal(cell, true)) + " -> " + in Port() 49 convertValueToString(model.getTerminal(cell, false)); in Port() 52 return super.getToolTipForCell(cell); in Port() 56 public boolean isCellFoldable(Object cell, boolean collapse) in Port()
|
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/ |
H A D | DotTab.php | 52 if (!isset($this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'])) { 53 …$this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'] = $this->mpdf->cell[$this->mpdf->row… 54 …} elseif ($this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'] < $this->mpdf->cell[$this-… 55 …$this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'] = $this->mpdf->cell[$this->mpdf->row… 57 $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s'] = 0; // reset
|
H A D | Br.php | 59 if (!isset($this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'])) { 60 …$this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'] = $this->mpdf->cell[$this->mpdf->row… 61 …} elseif ($this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'] < $this->mpdf->cell[$this-… 62 …$this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'] = $this->mpdf->cell[$this->mpdf->row… 64 $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s'] = 0; // reset
|
H A D | Hr.php | 108 if ($this->mpdf->cell) { 109 if (!isset($this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'])) { 110 …$this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'] = $this->mpdf->cell[$this->mpdf->row… 111 …} elseif ($this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'] < $this->mpdf->cell[$this-… 112 …$this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'] = $this->mpdf->cell[$this->mpdf->row… 114 $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s'] = 0; // reset
|
/plugin/wysiwyg/fckeditor/editor/_source/internals/ |
H A D | fcktablehandler.js | 226 cell.parentNode.removeChild( cell ) ; 591 if ( oRow[c] == cell ) 693 if ( cell.parentNode ) 694 cell.parentNode.removeChild( cell ) ; 695 cell.colSpan = cell.rowSpan = 1 ; 706 if ( ! cell) 713 cell.colSpan++ ; 727 if ( ! cell || cell._rowScanned === true ) 730 cell.rowSpan++ ; 764 j += cell.colSpan ; [all …]
|
/plugin/datepicker/script/jscalendar-1.0/ |
H A D | calendar.js | 765 var cell = null; 771 cell.colSpan = cs; 779 return cell; 854 cell.colSpan = 2; 896 cell.colSpan = 2; 1142 cell = cell.nextSibling; 1151 dpos[j] = cell; 1197 cell.className += cell.otherMonth ? " oweekend" : " weekend"; 1218 if (cell) 1228 if (cell) { [all …]
|
/plugin/quickstats/scripts/ |
H A D | extended_data.php | 139 return cell($search_terms); 141 else return cell(' '); 166 $row .= cell($index,'th'); 186 else $row .= cell(' ') . cell(' ') . cell(' ') . cell(' '); 205 $row .= cell($uas); 208 $row .= cell($temp[$index]); 213 $row .= cell(' '); 227 $header .= cell($thds[$th],'th'); 232 function cell($data, $type='td', $colspan="",$p_brief=false) { function 399 echo rawurlencode(cell($country_name,'caption') ."\n"); [all …]
|
/plugin/edittable/script/ |
H A D | contextmenu.js | 38 jQuery.each(edittable.cellArray(selection), function (index, cell) { argument 39 var col = cell.col; 40 var row = cell.row; 55 jQuery.each(edittable.cellArray(selection), function (index, cell) { argument 56 var col = cell.col; 57 var row = cell.row; 74 jQuery.each(edittable.cellArray(selection), function (index, cell) { argument 75 var col = cell.col; 76 var row = cell.row; 94 var col = cell.col; [all …]
|
/plugin/wysiwyg/fckeditor/editor/plugins/dragresizetable/ |
H A D | fckplugin.js | 146 var cell = tableMap[i][j] ; 148 var colSpan = isNaN( cell.colSpan) ? 1 : cell.colSpan ; 180 cell.width = "" ; 181 cell.style.width = "" ; 194 var cell = tableMap[i][j] ; 195 if ( cell._Processed ) 197 if ( tableMap[i][j-1] != cell ) 200 cell.width = parseInt( cell.width, 10 ) + parseInt( colArray[j].width, 10 ) ; 201 if ( tableMap[i][j+1] != cell ) 203 processedCells.push( cell ) ; [all …]
|
/plugin/fckg/fckeditor/editor/plugins/dragresizetable/ |
H A D | fckplugin.js | 148 var cell = tableMap[i][j] ; 150 var colSpan = isNaN( cell.colSpan) ? 1 : cell.colSpan ; 182 cell.width = "" ; 183 cell.style.width = "" ; 196 var cell = tableMap[i][j] ; 197 if ( cell._Processed ) 199 if ( tableMap[i][j-1] != cell ) 202 cell.width = parseInt( cell.width, 10 ) + parseInt( colArray[j].width, 10 ) ; 203 if ( tableMap[i][j+1] != cell ) 205 processedCells.push( cell ) ; [all …]
|
/plugin/diagram/syntax/ |
H A D | main.php | 977 foreach ($row as $cell) 982 if (!isset($cell['text'])) 984 if (isset($cell['content'])) 985 $cell_content = $cell['content']; 990 $cell_content = $this->_renderWikiCalls ($abbrs[$line_index][$cell['text']]['content']); 991 $cell['style'] = $this->_generateBlockStyle ($abbrs[$line_index][$cell['text']]['params']); 995 $cell_content = $cell['text']; 999 ….(isset($cell['classes']) && !empty($cell['classes']) ? ' class="'.implode(' ', $cell['classes']).… 1000 .($cell['style'] != '' ? ' style="'.$cell["style"].'"' : '') 1001 .(isset($cell['colspan']) ? ' colspan="'.$cell["colspan"].'"' : '') [all …]
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Sheets/ |
H A D | RepeatCellRequest.php | 34 public function setCell(CellData $cell) argument 36 $this->cell = $cell; 43 return $this->cell;
|
/plugin/latexport/implementation/ |
H A D | decorator_tables.php | 176 $cell = $this->row[$this->column]; 177 if ($cell->getRows() > 0) { 178 $numberOfPlaceholders = $cell->getCols(); 195 $cell = $this->row[$column]; 197 if ($cell->getRows() == 1 && !$lineIsPresent) { 202 if ($cell->getRows() > 1 && $lineIsPresent) { 207 $column += $cell->getCols(); 218 foreach($this->row as $cell) { 219 $nextCell = $cell->nextCellSize();
|
/plugin/edittable/renderer/ |
H A D | inverse.php | 696 foreach($row as $cell) { 700 $nextkey += $cell['colspan'] - 1; 701 $table[$inorm][$nextkey] = $cell; 718 foreach($row as $n => $cell) { 720 $diff = (utf8_strlen($cell['text']) + $cell['colspan'] + 724 $span = $cell['colspan']; 745 foreach($row as $n => $cell) { 747 $span = $cell['colspan']; 756 switch($cell['align']) { 770 str_repeat($types[$cell['tag']], $cell['colspan'] - 1); [all …]
|