Home
last modified time | relevance | path

Searched refs:select (Results 1 – 25 of 833) sorted by relevance

12345678910>>...34

/plugin/tagfilter/_test/
H A Dsyntax.test.php32 $select = pq('select', $form);
33 $this->assertTrue($select->count() === 3);
34 $this->assertEquals('T1', $select->eq(0)->attr('name'));
35 $this->assertEquals('T2', $select->eq(1)->attr('name'));
36 $this->assertEquals('T3', $select->eq(2)->attr('name'));
38 $this->assertEquals('T1 selection', $select->eq(0)->attr('data-placeholder'));
39 $this->assertEquals('T2 selection', $select->eq(1)->attr('data-placeholder'));
40 $this->assertEquals('T3 selection', $select->eq(2)->attr('data-placeholder'));
42 $this->assertNull($select
[all...]
/plugin/bpmnio/vendor/dmn-js/dist/assets/
H A Ddmn-js-shared.css124 .dms-select {
140 .dms-select {
144 .dms-input-select .dms-input {
149 .dms-select:focus {
155 .dms-select.invalid {
160 .dms-select.invalid:focus,
178 .dms-input-select {
184 .dms-input-select .dms-input-select-icon {
191 .dms-input-select .options {
195 .dms-select-options {
[all …]
/plugin/combo/vendor/php-webdriver/webdriver/lib/
H A DAbstractWebDriverCheckboxOrRadio.php97 * @param bool $select
100 protected function byValue($value, $select = true) argument
104 $select ? $this->selectOption($element) : $this->deselectOption($element);
123 * @param bool $select
126 protected function byIndex($index, $select = true) argument
133 $select ? $this->selectOption($elements[$index]) : $this->deselectOption($elements[$index]);
141 * @param bool $select
143 protected function byVisibleText($text, $partial = false, $select = true) argument
180 $select ? $this->selectOption($element) : $this->deselectOption($element);
/plugin/namespacesearch/
H A Dstyle.css15 select.namespacesearch_namespace {
32 select.namespacesearch_namespace:hover {
36 select.namespacesearch_namespace option:nth-child(2n+1) {
40 select.namespacesearch_namespace option {
48 #dokuwiki__sitetools form.search select ~ #qsearch__in {
/plugin/struct/meta/
H A DQueryBuilder.php14 protected $select = []; variable in dokuwiki\\plugin\\struct\\meta\\QueryBuilder
35 * Adds a column to select
39 * @param string $tablealias The table to select from
40 * @param string $column The column to select
49 $this->select[$alias] = "$tablealias.$column";
58 * select things like fixed strings or more complex function calls, but the correctness will not
66 $this->select[$alias] = $statement;
78 if (!isset($this->select[$alias])) {
79 throw new StructException('No such select alias');
82 return $this->select[
[all...]
/plugin/imagecarousel/vendor/slick/
H A Dslick.less9 -webkit-user-select: none;
10 -khtml-user-select: none;
11 -moz-user-select: none;
12 -ms-user-select: none;
13 user-select: none;
H A Dslick.css11 -webkit-user-select: none;
12 -moz-user-select: none;
13 -ms-user-select: none;
14 user-select: none;
17 -khtml-user-select: none;
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/
H A Dnv.d3.min.js2select(this),o=d||960,p=e||400,q=n.selectAll("g.nv-wrap.nv-interactiveLineLayer").data([l]),r=q.en…
3select(".nv-y.nv-axis").attr("transform","translate("+t+",0)"),e.width(t).height(u);var A=z.select
4select(".nv-x.nv-axis").selectAll("g");p&&z.selectAll("text").attr("transform",function(a,b,c){ret…
5select("g");F.append("rect").style("opacity",0),F.append("g").attr("class","nv-x nv-axis"),F.appen…
6select("g");if(K.append("g").attr("class","nv-x nv-axis"),K.append("g").attr("class","nv-y nv-axis…
7select(this.parentNode).attr("transform","translate("+f(a)+")"),M.attr("d",p),L.attr("d",p).attr("…
8select(this),a.utils.initSVG(j),l.domain(c||d3.extent(b,n)).range(e||[0,k]),m.domain(d||d3.extent(…
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Firestore/
H A DStructuredQuery.php117 public function setSelect(Projection $select) argument
119 $this->select = $select;
126 return $this->select;
/plugin/ckgdoku/ckeditor/plugins/wsc/skins/moono-lisa/
H A Dwsc.css22 div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_hbox_first .cke_dialog_ui_select select.cke_…
23 div[name=Thesaurus] div.cke_dialog_ui_input_select select.cke_dialog_ui_input_select
28 div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_hbox_first .cke_dialog_ui_select select.cke_…
29 div[name=Thesaurus] div.cke_dialog_ui_input_select select.cke_dialog_ui_input_select:focus
/plugin/ckgedit/ckeditor/plugins/wsc/skins/moono-lisa/
H A Dwsc.css22 div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_hbox_first .cke_dialog_ui_select select.cke_…
23 div[name=Thesaurus] div.cke_dialog_ui_input_select select.cke_dialog_ui_input_select
28 div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_hbox_first .cke_dialog_ui_select select.cke_…
29 div[name=Thesaurus] div.cke_dialog_ui_input_select select.cke_dialog_ui_input_select:focus
/plugin/combo/ComboStrap/
H A DEvent.php102 * We try to get the records with a select/delete
110 $select = Sqlite::createSelectFromTableAndColumns(self::EVENT_TABLE_NAME, $attributes);
111 $select .= " order by " . self::TIMESTAMP_ATTRIBUTE . " limit {$maxEvent}";
113 ->setQuery($select);
260 $select = Sqlite::createSelectFromTableAndColumns(self::EVENT_TABLE_NAME, $attributes);
263 $request->setQuery($select);
265 $request->setQueryParametrized($select . " where " . self::EVENT_NAME_ATTRIBUTE . " = ?", [$eventName]);
/plugin/timetrack/
H A Dscript.js43 this.select();
74 $input_next.focus().select();
82 $input_next.focus().select();
91 $input_next.focus().select();
99 $input_next.focus().select();
162 …track-form input[data-date="'+new Date().toISOString().slice(0, 10)+'"]').first().select().focus();
/plugin/pdfjs/pdfjs/web/
H A Ddebugger.js49 var select = selects[i];
50 if (select.dataset.fontName !== fontName) {
53 select.checked = !select.checked;
54 selectFont(fontName, select.checked);
55 select.scrollIntoView();
131 select.setAttribute('type', 'checkbox');
132 select.dataset.fontName = fontName;
133 select.addEventListener('click', (function(select, fontName) { argument
135 selectFont(fontName, select.checked);
137 })(select, fontName));
[all …]
/plugin/bureaucracyau/_test/
H A Dsyntax.test.php27 $select = $this->checkField($doc, 'Please select an option', 'select');
28 $this->assertEquals(3, pq('option', $select)->length);
29 $this->assertEquals(1, pq('option:selected', $select)->length);
30 $this->assertEquals('Peaches', pq('option:selected', $select)->val());
/plugin/bureaucracy-au/_test/
H A Dsyntax.test.php27 $select = $this->checkField($doc, 'Please select an option', 'select');
28 $this->assertEquals(3, pq('option', $select)->length);
29 $this->assertEquals(1, pq('option:selected', $select)->length);
30 $this->assertEquals('Peaches', pq('option:selected', $select)->val());
/plugin/tagfilter/
H A Dscript.js12 return jQuery('select.tagdd_select_'+id);
16 //elements = getElementsByClass('tagdd_select',document.getElementById('tagdd_'+id),'select');
64 jQuery.each(form,function(index,select) { //loop through select boxes and collect the pages
65 if(jQuery.isArray(select) && select.length) {
67 jQuery.each(select,function(index2,tag) { argument
78 jQuery.each(form,function(index,select) { //loop through select boxes and collect the pages
79 if(jQuery.isArray(select)
81 AnonymousFunction6ab6260e0600(index,select) global() argument
[all...]
/plugin/webdav/vendor/sabre/vobject/lib/Component/
H A DVCard.php231 $version = $this->select('VERSION');
252 $uid = $this->select('UID');
274 $fn = $this->select('FN');
391 foreach ($this->select($propertyName) as $field) {
421 foreach ($this->select($propertyName) as $field) {
/plugin/icalevents/vendor/sabre/vobject/lib/Component/
H A DVCard.php234 $version = $this->select('VERSION');
256 $uid = $this->select('UID');
278 $fn = $this->select('FN');
394 foreach ($this->select($propertyName) as $field) {
425 foreach ($this->select($propertyName) as $field) {
/plugin/jquery-syntax/jquery-syntax/base/
H A Djquery.syntax.layout.table.css24 user-select: none;
25 -moz-user-select: none;
26 -webkit-user-select: none;
/plugin/zip/pear/File/Archive/Reader/
H A DChangeName.php108 function select($filename, $close = true) function in File_Archive_Reader_AddBaseName
114 return $this->source->select($name, $close);
205 function select($filename, $close = true) function in File_Archive_Reader_ChangeBaseName
207 return $this->source->select($this->unmodifyName($filename));
/plugin/shibbolethauth/
H A Dstyle.css38 #shibboleth__manager td select.edit { }
47 #shibboleth__manager tr select {
55 #shibboleth__manager tr.default select,
64 #shibboleth__manager tr.protected select,
/plugin/wikicalendar/
H A Dsyntax.php336 $out .= '<select id="year" name="plugin_wikicalendar_year">' . DOKU_LF;
349 $out .= '</select>' . DOKU_LF;
354 $out .= '<select id="month" name="plugin_wikicalendar_month">' . DOKU_LF;
364 $out .= '</select>' . DOKU_LF;
/plugin/davcard/vendor/sabre/vobject/lib/Component/
H A DVCard.php217 $version = $this->select('VERSION');
239 $uid = $this->select('UID');
261 $fn = $this->select('FN');
377 foreach($this->select($propertyName) as $field) {
/plugin/webdavclient/vendor/sabre/vobject/lib/Component/
H A DVCard.php217 $version = $this->select('VERSION');
239 $uid = $this->select('UID');
261 $fn = $this->select('FN');
377 foreach($this->select($propertyName) as $field) {

12345678910>>...34