]> git.uio.no Git - u/erikhf/frm.git/blame - src/components/search/search.html
Tester maater aa presentere filtererng paa i dropdwon-menyen
[u/erikhf/frm.git] / src / components / search / search.html
CommitLineData
5bc68022
RM
1<div id="search" >
2
3 <label class="sr-only" for="livesearch">Search</label>
4
5 <input mou-live-search
6 (results)="orgunits = $event"
7 (loading)="loading = $event"
8 type="text"
9 autofocus
10 class="livesearch"
11 name="livesearch"
12 id="livesearch"
4c04388b
RM
13 value="lol"
14 placeholder="Search"
15 />
1aec1256 16 <img class="loadingpic" [hidden]="!loading"
5bc68022
RM
17 src="https://www.brown.edu/sites/default/themes/pawtuxet/img/loader-larger.gif">
18
19
4c04388b 20 <div class="divresult" id="divresult" [hidden]="!orgunits.length">
5bc68022
RM
21 <ul class="dropdown-menu result" >
22 <li *ng-for="#orgunit of orgunits" (click)="getMoreInfo(orgunit)">
23 <a href="#">{{orgunit.name}}<br/><span>{{orgunit.lastUpdated}}</span></a>
24 </li>
25 </ul>
26 </div>
27
1aec1256 28
4c04388b 29
21341a61 30</div>
5bc68022 31
1aec1256
RM
32<button type="button" class="knapp" data-toggle="collapse" data-target="#dropdown-menu">
33
34 <!--pil opp og ned-->
35
36 <div class="zippy">
37 <div (click)="toggle()" class="zippy__title">
38 {{ visible ? '&xdtri;' : '&xutri;' }} {{title}}
39 </div>
40 <div [hidden]="!visible" class="zippy__content">
41 <content></content>
42 </div>
43 </div>
44
45</button>
5bc68022
RM
46
47<div>
48<ul id="dropdown-menu" class="dropdown-menu">
49
50 <li><a href="#">Another action</a></li>
51 <li><a href="#">Something else here</a></li>
52 <li role="separator" class="divider"></li>
53 <li><a href="#">Separated link</a></li>
4c04388b
RM
54 <li><div class="checkbox">
55 <label><input type="checkbox" value="">Option 1</label>
56 </div>
57 <div class="checkbox">
58 <label><input type="checkbox" value="">Option 2</label>
59 </div>
60 <div class="checkbox disabled">
61 <label><input type="checkbox" value="" disabled>Option 3</label>
62 </div></li>
63 <select>
64 <option value="volvo">Volvo</option>
65 <option value="saab">Saab</option>
66 <option value="opel">Opel</option>
67 <option value="audi">Audi</option>
68 </select>
69
70
5bc68022
RM
71</ul>
72
73</div>
4c04388b 74