Home
last modified time | relevance | path

Searched refs:columns (Results 51 – 75 of 286) sorted by relevance

12345678910>>...12

/plugin/btable2/
H A DREADME.md23 <columns>
28 </columns>
47 - tag "columns"
59 - rows/columns seperator may also be newline instead of "^".
/plugin/combo/resources/theme/default/pages/templates/
H A Dholy.css12 grid-template-columns: minmax(min-content,1fr) 3fr;
30 grid-template-columns: minmax(min-content,1fr) 5fr;
37 grid-template-columns: [main] 7fr [side] minmax(auto,2fr);
/plugin/html2pdf/html2pdf/html2ps/
H A Dstrategy.table.layout.auto.php76 $columns = count($minw);
113 for ($i=0; $i < $columns; $i++) {
126 for ($i=0; $i < $columns; $i++) {
163 for ($i=0; $i < $columns; $i++) {
176 for ($j=0; $j<$columns; $j++) {
/plugin/csv/_test/csv/
H A Dc-q-q-escaping.csv6 "columns with
7 new line","columns with tab"
/plugin/struct/meta/
H A DAggregationList.php19 $this->resultColumnCount = count($this->columns);
32 protected $columns; global() variable in dokuwiki\\plugin\\struct\\meta\\AggregationList
H A DSearchCloud.php23 if (!$this->columns) throw new StructException('nocolname');
58 $col = $this->columns[0];
121 $row['tag'] = new Value($this->columns[0], $row['tag']);
H A DAggregationValue.php
/plugin/wrap/
H A Dexample.txt37 * **multi-columns**
65 You can have columns easily by adding the class ''column'' and a width, e.g.
85 Normally you would only need the class ''column'', but for more sophisticated uses (not only for columns, but for any other classes, like [[#boxes and notes]] as well) you can have several kinds of "floats":
107 With certain width keywords you can fit your columns automatically to fill the available horizontal space. Those columns will also react to the screen size, so will be responsive and wrap underneath each other on mobile devices.
111 * **''half''** fits two columns in a row
112 * **''third''** fits three columns in a row
113 * **''quarter''** fits four columns in a row
135 === Multi-columns ===
138 Multi-columns wor
[all...]
/plugin/data-au/syntax/
H A Dentry.php77 $columns = array();
109 $columns[$column['key']] = $column;
112 'dataau' => $dataau, 'cols' => $columns, 'classes' => $class,
308 $columns = array('title', 'value', 'comment');
314 $columns = array('title', 'type', 'multi', 'value', 'comment');
326 foreach($columns as $column) {
410 $renderer->form->addElement("<td class=\"{$columns[$index]}\">");
/plugin/bez/mdl/
H A DEntity.php42 $columns = $this->get_select_columns();
44 $columns = array_intersect($columns, $filter);
47 foreach ($columns as $col) {
/plugin/pagelist/
H A Dhelper.php70 * @var array with entries: 'pluginname' => ['columnname1', 'columnname2'], registers the available columns per plugin
167 'desc' => '(optional) overrides default flags, or en/disable existing columns',
198 * @param string $col column name. Assumption: unique between all builtin columns and plugin supplied columns
224 * (optional) Provide header data, if not given for built-in columns localized strings are used, or for plugins the th() function
245 * for dis/enabling columns: accepts keys of $column, e.g. default: '(no)date', 'user', 'desc', 'summary',
310 /** @see $column array, enable/disable columns */
370 foreach ($this->plugins as $plugin => $columns) {
371 foreach ($columns as $col) {
383 $columns
[all...]
/plugin/pagequery/
H A Dreadme.md9 On the surface it may appear to fill a similar role to the really excellent [[plugin:indexmenu|IndexMenu]], however pagequery's aspirations are not as lofty or elaborate. IndexMenu focuses on displaying namespaces, and the pages within. allowing you to sort the namespaces and files by many options, and actively navigate and manipulate this index. Pagequery's purpose is __displaying lists of pages__: yes, you can sort by namespace if you wish, however the main goal is to search for and list pages in any order, and then neatly display them in groups (A-Z, by year, by month, etc...) and in addition in columns — to make best use of space. If you try both of them you'll quickly see that they //"scratch different itches."//
22 * Make full use of space: display your list of links in up to six columns
23 * Put borders around the columns for clarity
40 Insert the pagequery markup in a page wherever you want your list to appear. You can have more than one ''pagequery'' list on one page((works well with the [[plugin:columns|columns plugin]])).
62 If you wanted to see the results in 3 columns and to have the links in "Sentence Case" with no underscores, then add this:
66 Another example, grouping by //year created//, then //month created//, then by //name//, in 2 columns, and displaying the real month name, plus having the links in "Sentence Case" with no underscores, and to top it off: a border around the table columns:
80 Or, all files in the "happy:go:lucky" namespace, sorted by year, then date created, in proper case, in 2 columns, and use the page title, not the name in the listing:
/plugin/odt/ODT/styles/
H A DODTPageLayoutStyle.php272 $columns = '';
292 $columns .= $items ['odt_property'].'="'.$items ['value'].'" ';
302 if ( !empty($layout) || !empty($bgi) || !empty($columns) || !empty($footnote) ||
311 if ( !empty($columns) || !empty($content_columns) ) {
312 $style .= '<style:columns '.$columns.">\n";
/plugin/webcomponent/
H A DREADME.md26 * Rename teaser-columns with card columns
/plugin/tableedit/
H A DREADME.md6 … of this plugin is to simplify handling Dokuwiki table columns. It's not easy to move some columns
/plugin/webcomponent/_test/data/pages/
H A Dblockquote.txt20 <card-columns>
39 </card-columns>
H A Dcard.txt14 * Can be formatted in columns with the [[card_column|card-columns]] component
/plugin/columns/
H A Dsyntax.php25 $columns = $this->getColumnsTagName();
35 $enterLexer = '<' . $columns . '(?:>|\s.*?>)';
36 $enterHandler = '<' . $columns . '(.*?)>';
37 $exit = '<\/' . $columns . '>';
389 $columns = $this->getAttribute($attribute, 'columns');
394 for ($c = 0; $c < $columns; $c++) {
/plugin/authgoogle/google/contrib/
H A DGoogle_FusiontablesService.php1009 public $columns; variable in Google_Sqlresponse
1012 public function setColumns(/* array(Google_string) */ $columns) { argument
1013 $this->assertIsArray($columns, 'Google_string', __METHOD__);
1014 $this->columns = $columns;
1017 return $this->columns;
1212 public $columns; variable in Google_Table
1238 public function setColumns(/* array(Google_Column) */ $columns) { argument
1239 $this->assertIsArray($columns, 'Google_Column', __METHOD__);
1240 $this->columns = $columns;
1243 return $this->columns;
/plugin/datatables/assets/datatables.net-responsive/js/
H A DdataTables.responsive.min.js
/plugin/syntaxhighlighter/Styles/
H A DSyntaxHighlighter.css59 .dp-highlighter .columns div
72 .dp-highlighter.nogutter .columns div
77 .dp-highlighter .columns
85 .dp-highlighter .columns div
/plugin/combo/ComboStrap/
H A DSqlite.php159 public static function createSelectFromTableAndColumns(string $tableName, array $columns = null): string
161 if ($columns === null) {
165 foreach ($columns as $columnName) {
153 createSelectFromTableAndColumns(string $tableName, array $columns = null) global() argument
/plugin/datatables/assets/datatables.net-plugins/features/searchPane/
H A DdataTables.searchPane.min.js
/plugin/sortablejs/
H A Dplugin.info.txt6 desc Allow sorting tables by columns
/plugin/structtemplate/meta/
H A DStructTemplateSyntax.php172 $columns = $search->getColumns();
173 foreach ($columns as $index => $column) {

12345678910>>...12