Home
last modified time | relevance | path

Searched refs:colspan (Results 1 – 25 of 88) sorted by relevance

1234

/plugin/latexport/implementation/
H A Ddecorator_tables.php10 public $colspan; variable in CellSize
22 public function __construct($colspan = 1, $rowspan = 0) { argument
23 $this->colspan = $colspan;
27 public function setSize($colspan, $rowspan) { argument
28 $this->colspan = $colspan;
33 return $this->colspan;
50 return "<c=$this->colspan,r=$this->rowspan>";
144 * @param int $colspan
160 * @param int $colspan
173 function computePlaceholders($colspan, $rowspan) { argument
[all …]
/plugin/odt/ODT/elements/
H A DODTElementTableCell.php14 protected $colspan; variable in ODTElementTableCell
21 public function __construct($style_name=NULL, $colspan = 1, $rowspan = 1) { argument
27 $this->setColumnSpan($colspan);
46 $colspan = $this->getColumnSpan();
51 if ( $colspan > 1 ) {
52 $encoded .= ' table:number-columns-spanned="'.$colspan.'"';
68 $colspan = $this->getColumnSpan();
69 for ($i = 1 ; $i < $colspan ; $i++) {
126 $this->colspan = $value;
135 return $this->colspan;
H A DODTElementTableHeaderCell.php21 public function __construct($style_name=NULL, $colspan = 0, $rowspan = 0) { argument
22 parent::__construct($style_name, $colspan, $rowspan);
32 $colspan = $this->getColumnSpan();
46 if ( $colspan > 1 ) {
47 $encoded .= ' table:number-columns-spanned="'.$colspan.'"';
48 } else if ($auto_columns === true && $colspan == 0) {
/plugin/html2pdf/html2pdf/html2ps/
H A Dbox.table.row.php44 for ($j=1; $j<$this->content[$i]->colspan; $j++) {
110 if ($this->content[$i]->colspan > 1) {
111 $colspan = new CellSpan;
112 $colspan->row = $row_index;
113 $colspan->column = $i;
114 $colspan->size = $this->content[$i]->colspan;
116 $colspans[] = $colspan;
145 if ($this->content[$i]->colspan > 1) {
160 if ($this->content[$i]->colspan > 1) {
H A Dstrategy.table.layout.auto.php15 foreach ($colspans as $colspan) {
16 $cell = $table->content[$colspan->row]->content[$colspan->column];
27 for ($i=$colspan->column; $i < $colspan->column+$colspan->size; $i++) {
59 array_splice($widths, $colspan->column, $colspan->size, $spanned_widths);
H A Dbox.table.cell.fake.php4 var $colspan; variable in FakeTableCellBox
28 $this->colspan = 1;
/plugin/edittable/renderer/
H A Djson.php71 function tableheader_open($colspan = 1, $align = null, $rowspan = 1) { argument
72 $this->_tablefield_open('th', $colspan, $align, $rowspan);
79 function tablecell_open($colspan = 1, $align = null, $rowspan = 1) { argument
80 $this->_tablefield_open('td', $colspan, $align, $rowspan);
95 private function _tablefield_open($tag, $colspan, $align, $rowspan) { argument
104 $this->tmetacell['colspan'] = $colspan;
126 $colspan = $this->tmetacell['colspan'];
128 for($c = 1; $c < $colspan; $c++) {
/plugin/odt/ODT/
H A DODTTable.php254 * @param int $colspan
279 ($cellStyle, $colspan, $rowspan);
303 * @param int $colspan
334 ($cellStyle, $colspan, $rowspan);
444 * @param int $colspan
456 self::tableHeaderOpenUseProperties($params, $properties, $colspan, $rowspan);
461 * @param int $colspan
466 self::tableCellOpenUsePropertiesInternal ($params, $properties, true, $colspan, $rowspan);
534 self::tableCellOpenUseProperties($params, $properties, $colspan, $rowspan);
541 self::tableCellOpenUsePropertiesInternal ($params, $properties, false, $colspan, $rowspan);
[all …]
/plugin/btable2/
H A Dsyntax.php226 $colspan = $columns_count + 2;
228 $colspan = $columns_count + 1;
236 $colspan = $columns_count + 1;
238 $colspan = $columns_count;
246 $renderer->tableheader_open($colspan);
299 $renderer->doc .= ' <td class="centeralign" colspan="'.$colspan.'">';
322 …odle, $columns, $columns_count, $total_rows, $change_row, $allow_changes, $colspan, $colongroups) { argument
353 … $ret .= ' <th colspan="' . $colspan . '" style="padding-bottom: 0;">' . $colg . '</td>' . "\n";
490 …orm($dID, $columns, $columns_count, $rows, $change_row, $allow_changes, $colspan, $add_delete_row)… argument
552 $ret .= ' <td class="centeralign" colspan="'.$colspan.'">';
[all …]
/plugin/latexport/_test/
H A Dcommand.php219 private $colspan; variable in CommandTableHeaderOpen
223 function __construct($colspan = 1, $align = null, $rowspan = 1) { argument
225 $this->colspan = $colspan;
238 private $colspan = 1; variable in CommandTableCellOpen
242 function __construct($colspan = 1, $align = null, $rowspan = 1) { argument
244 $this->colspan = $colspan;
H A Ddecorator_mock.php186 function tableheader_open($colspan = 1, $align = null, $rowspan = 1) { argument
187 $this->listOfCommands->enqueue(new CommandTableHeaderOpen($colspan, $align, $rowspan));
194 function tablecell_open($colspan = 1, $align = null, $rowspan = 1) { argument
195 $this->listOfCommands->enqueue(new CommandTableCellOpen($colspan, $align, $rowspan));
/plugin/edittable/script/
H A Deditor.js48 return { rowspan: 1, colspan: 1 };
81 meta[row][col].hasOwnProperty('colspan') && meta[row][col].colspan > 1) {
86 merge.colspan = meta[row][col].colspan;
207 if (cellMeta.colspan) {
208 $td.attr('colspan', cellMeta.colspan);
311 meta[row][col].colspan = 1;
324 var colspan = this.mergeCells.mergedCellInfoCollection[merge].colspan;
326 meta[row][col].colspan = colspan;
332 for (c = col; c < col + colspan; c += 1) {
338 meta[r][c].colspan = 1;
[all …]
/plugin/revealjs/
H A Drenderer.php353 * @param int $colspan
357 function tableheader_open($colspan = 1, $align = null, $rowspan = 1, $classes = NULL) { argument
364 if($colspan > 1) {
365 $this->_counter['cell_counter'] += $colspan - 1;
366 $this->doc .= ' colspan="'.$colspan.'"';
384 * @param int $colspan
388 function tablecell_open($colspan = 1, $align = null, $rowspan = 1, $classes = NULL) { argument
395 if($colspan > 1) {
396 $this->_counter['cell_counter'] += $colspan - 1;
397 $this->doc .= ' colspan="'.$colspan.'"';
/plugin/dtable/
H A Dscript.js309 var colspan = $this_cell.attr("colspan");
424 var colspan = cells[i][0];
436 colspan = mod[2];
467 if (colspan > 1)
546 width /= colspan;
547 for (var j = 0; j < colspan; j++)
598 for (var j = 1; j < colspan; j++)
606 $button.data('colspan', colspan);
614 var width = $mother.width() / colspan;
641 function(cclass, rowspan, colspan, value) argument
[all …]
/plugin/exttab3/helper/
H A Dodt.php38 $colspan = 1;
40 $colspan = $matches[1];
90 $renderer->_odtTableHeaderOpenUseCSS($colspan, $rowspan, $tag, $attr);
96 $renderer->_odtTableCellOpenUseCSS($colspan, $rowspan, $tag, $attr);
/plugin/combo/vendor/carica/phpcss/
H A DREADME.md74 <th colspan="3">Attributes</th>
98 <th colspan="3">Structural Pseudo Classes</th>
137 <th colspan="3">Link Pseudo Classes</th>
146 <th colspan="3">User Action Pseudo Classes</th>
158 <th colspan="3">Target Pseudo Class</th>
164 <th colspan="3">Language Pseudo Class</th>
170 <th colspan="3">UI Element states Pseudo Class</th>
182 <th colspan="3">Pseudo Elements</th>
197 <th colspan="3">Class Selector</th>
203 <th colspan
[all...]
/plugin/dw2markdown/
H A Drenderer.php540 * @param int $colspan
544 function tableheader_open($colspan = 1, $align = null, $rowspan = 1, $classes = null) { argument
545 $this->doc .= str_repeat( '|', $colspan );
546 $this->tableColumns += $colspan;
558 * @param int $colspan
562 function tablecell_open($colspan = 1, $align = null, $rowspan = 1, $classes = null) { argument
563 $this->doc .= str_repeat( '|', $colspan );
/plugin/dokutexit/
H A Dlatex.php713 $this->$table_mode($colspan, $align);
723 $this->$table_mode($colspan, $align);
864 'args' => array($colspan, $align)));
876 'args' => array($colspan, $align)));
921 $this->tablecell_open($colspan, $align);
935 if ($colspan > 0) {
1020 $this->tablecell_open($colspan, $align);
1034 if ($colspan > 1) {
1124 $this->tablecell_open($colspan, $align);
1138 if ($colspan > 0) {
[all …]
/plugin/ckgdoku/scripts/
H A Dtable_debugging_code.js.unc16 str+= " colspan=" +rows[i][col].colspan + " ";
42 +", colspans:"+ rows[row][col].colspan
/plugin/ckgedit/scripts/
H A Dtable_debugging_code.js.unc16 str+= " colspan=" +rows[i][col].colspan + " ";
42 +", colspans:"+ rows[row][col].colspan
/plugin/struct/renderer/
H A Dcsv.php78 * @param int $colspan ignored
83 public function tablecell_open($colspan = 1, $align = null, $rowspan = 1) argument
106 * @param int $colspan ignored
110 public function tableheader_open($colspan = 1, $align = null, $rowspan = 1) argument
112 $this->tablecell_open($colspan, $align, $rowspan);
/plugin/querychangelog/
H A Dadmin.php201 ptln ('<tr><td bgcolor="red" colspan="5">');
221 ptln( ' <tr><td colspan="5">&nbsp;</td></tr>');
231 ptln( ' <td colspan="3" align="left"><select name="base_ns">');
266 ptln( ' <tr><td colspan="5">&nbsp;</td></tr>');
270 …ptln( ' <td colspan="5" align="center"><input type="submit" value="'.formtext($this->lang['…
/plugin/latexit/tests/dw_orig_test_files/
H A Dtest8.txt3 | Row 2 Col 1 | some colspan (note the double pipe) ||
8 ^ Heading 4 | no colspan this time | |
/plugin/form/
H A Dsyntax.php910 $data .= '<tr><td colspan="2">'
1019 $data .= '<tr><td colspan="2">&nbsp;</td></tr>';
1057 $data .= '<tr><td colspan="2"><span style="color:#FF0000;">'
/plugin/prosemirror/
H A Drenderer.php217 public function tablecell_open($colspan = 1, $align = null, $rowspan = 1) argument
219 $this->openTableCell('table_cell', $colspan, $align, $rowspan);
229 public function tableheader_open($colspan = 1, $align = null, $rowspan = 1) argument
231 $this->openTableCell('table_header', $colspan, $align, $rowspan);
244 * @param int $colspan
248 protected function openTableCell($type, $colspan, $align, $rowspan) { argument
249 $this->colcount += $colspan;
252 $node->attr('colspan', $colspan);

1234