Home
last modified time | relevance | path

Searched refs:col (Results 276 – 300 of 378) sorted by last modified time

1...<<111213141516

/plugin/yuriigantt/3rd/dhtmlxgantt/skins/
H A Ddhtmlxgantt_terrace.css1 …ine-height:inherit}.gantt_grid_scale .gantt_grid_column_resize_wrap{cursor:col-resize;position:abs…
H A Ddhtmlxgantt_contrast_white.css1 …ine-height:inherit}.gantt_grid_scale .gantt_grid_column_resize_wrap{cursor:col-resize;position:abs…
H A Ddhtmlxgantt_material.css1 …ine-height:inherit}.gantt_grid_scale .gantt_grid_column_resize_wrap{cursor:col-resize;position:abs…
H A Ddhtmlxgantt_contrast_black.css1 …ine-height:inherit}.gantt_grid_scale .gantt_grid_column_resize_wrap{cursor:col-resize;position:abs…
H A Ddhtmlxgantt_meadow.css1 …ine-height:inherit}.gantt_grid_scale .gantt_grid_column_resize_wrap{cursor:col-resize;position:abs…
H A Ddhtmlxgantt_skyblue.css1 …ine-height:inherit}.gantt_grid_scale .gantt_grid_column_resize_wrap{cursor:col-resize;position:abs…
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/skins/
H A Ddhtmlxgantt_meadow.css300 cursor: col-resize;
H A Ddhtmlxgantt_terrace.css299 cursor: col-resize;
H A Ddhtmlxgantt_broadway.css406 cursor: col-resize;
H A Ddhtmlxgantt_material.css719 cursor: col-resize;
H A Ddhtmlxgantt_skyblue.css252 cursor: col-resize;
/plugin/yuriigantt/3rd/dhtmlxgantt/
H A Ddhtmlxgantt.js.map1col","iterator","curExtra","_getColsTotalWidth","cols_width","v","parseFloat","unknown","gridWidth…
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/
H A Ddhtmlxgantt.css299 cursor: col-resize;
H A Ddhtmlxgantt.js16802 col[key] = data[key];
19162 if (col.min_width && col.width + share < col.min_width)
19163 share = col.min_width - col.width;
19166 } else if (col.max_width && col.width + share > col.max_width)
19167 share = col.max_width - col.width;
19170 col.width += share;
19304 if (!col.name) {
19318 templates.grid_header_class(col.name, col)].join(" ");
19321 var label = (col.label || labels["column_" + col.name] || labels[col.name]);
24240 if (col.template)
[all …]
/plugin/sequencediagram/bower_components/lodash/vendor/backbone/test/
H A Dcollection.js3 var a, b, c, d, e, col, otherCol; variable
27 col.sort();
31 col.sort();
85 assert.equal(col.get(col.first().cid), col.first());
106 assert.ok(col.has(a));
107 assert.ok(col.has(b));
359 col.off();
738 assert.ok(col.includes(col.sample()));
790 col.reset([]);
794 col.reset(models);
[all …]
H A Dmodel.js405 var col = new Collection([{id: 'c5'}, {id: 'c6'}, {id: 'c7'}]);
407 assert.equal(col.get('c6').cid.charAt(0), 'm');
408 col.set([{id: 'c6', value: 'test'}], {
413 assert.ok(col.get('c6').has('value'));
/plugin/data-au/syntax/
H A Drelated.php105 $col = $dataau['sort'][0];
107 if($col == '%pageid%') {
109 } elseif($col == '%title%') {
113 if(!$tables[$col]) {
115 … $from .= ' LEFT JOIN dataau AS ' . $tables[$col] . ' ON ' . $tables[$col] . '.pid = pages.pid';
116 $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->quote_string($col);
130 $col = $filter['key'];
133 if($col == '%pageid%') {
139 if(!$tables[$col]) {
141 … $from .= ' LEFT JOIN dataau AS ' . $tables[$col] . ' ON ' . $tables[$col] . '.pid = pages.pid';
[all …]
H A Dtable.php112 $col = trim($col);
130 $col = trim(strtolower($col));
144 $col = trim($col);
576 $key = $col['key'];
593 $type = $col['type'];
609 unset($col);
613 $col = $dataau['sort'][0];
615 if($col == '%pageid%') {
625 if(!$tables[$col]) {
628 $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->quote_string($col);
[all …]
H A Dcloud.php86 $col = $filter['key'];
89 if(preg_match('/^%(\w+)%$/', $col, $m) && isset($fields[$m[1]])) {
95 if(!$tables[$col]) {
96 $tables[$col] = 'T' . (++$cnt);
97 … $from .= ' LEFT JOIN dataau AS ' . $tables[$col] . ' ON ' . $tables[$col] . '.pid = dataau.pid';
98 $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->quote_string($col);
101 … $where .= ' ' . $filter['logic'] . ' ' . $tables[$col] . '.value ' . $filter['compare'] .
/plugin/doodle4/
H A Ddoodle_template.php60 <?php for ($col = 0; $col < $c; $col++) { variable
61 echo $userData['choice'][$col];
72 for ($col = 0; $col < $c; $col++) { variable
74 echo $template['count'][$col];
157 for ($col = 0; $col < $c; $col++) { variable
158 $userAuswahl[$userZahl][$col] = $userData['choice'][$col];
180 <?php for ($col = 0; $col < $c1 ; $col++) { variable
182 echo $userAuswahl[$col][$userZahl];
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/
H A Djquery.min.js3 …"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgrou…
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
H A DBaseSerializationTest.php943 $col = $this->getField($deserialized, 'collection');
944 self::assertCount(2, $col);
945 self::assertEquals('child1', $col[0]->getName());
946 self::assertEquals('child2', $col[1]->getName());
947 self::assertSame($deserialized, $col[0]->getParent());
948 self::assertSame($deserialized, $col[1]->getParent());
951 self::assertCount(2, $col);
952 self::assertEquals('child1', $col[0]->getName());
953 self::assertEquals('child2', $col[1]->getName());
954 self::assertSame($deserialized, $col[0]->getParent());
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/
H A Dbootstrap.min.css5col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-l…
/plugin/metaeditor/
H A Djstree.js749 col = this.element.find('.jstree-anchor').filter(':visible'),
750 ind = col.index(document.activeElement) || 0,
756 col.slice(ind).each($.proxy(function (i, v) {
766 col.slice(0, ind).each($.proxy(function (i, v) {
778 col.slice(ind + 1).each($.proxy(function (i, v) {
788 col.slice(0, ind + 1).each($.proxy(function (i, v) {
/plugin/ckgdoku/scripts/
H A Dparse_wiki-cmpr.js1col:0,td_no:0,tr_no:0,current_row:false,in_table:false,in_multi_plugin:false,is_rowspan:false,list…

1...<<111213141516