1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/gallery/search/search.gallery.component.html

23 lines
1.1 KiB
HTML
Raw Normal View History

<div class="col-sm-4 col-md-5 pull-right">
2016-05-10 03:43:52 +08:00
<form class="navbar-form" role="search" #SearchForm="ngForm">
<div class="input-group">
2016-05-10 03:43:52 +08:00
<input type="text" class="form-control" placeholder="Search" (keyup)="onSearchChange($event)"
(blur)="onFocusLost($event)" (focus)="onFocus($evnet)" [(ngModel)]="searchText" #name="ngForm"
ngControl="search"
2016-05-10 03:43:52 +08:00
name="srch-term" id="srch-term" autocomplete="off" >
<div class="autocomplete-list" *ngIf="autoCompleteItems.length > 0" >
<div class="autocomplete-item" *ngFor="let item of autoCompleteItems" (mousedown)="search(item)">
{{item.preText}}<strong>{{item.highLightText}}</strong>{{item.postText}}
</div>
</div>
<div class="input-group-btn" style="display: block">
2016-05-10 03:43:52 +08:00
<button class="btn btn-default dropdown-toggle" type="button" (click)="onSearch()"><i
class="glyphicon glyphicon-search"></i>
</button>
</div>
</div>
</form>
</div>