mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
22 lines
1.3 KiB
HTML
22 lines
1.3 KiB
HTML
<ion-content>
|
|
<form [ng-form-model]="form">
|
|
<h5 padding-left padding-top> Search - Default </h5>
|
|
<ion-search-bar ng-control="defaultSearch" class="e2eDefaultFloatingSearchBar"></ion-search-bar>
|
|
|
|
<h5 padding-left> Search - Custom Placeholder </h5>
|
|
<ion-search-bar ng-control="customPlaceholder" placeholder="Filter" class="e2eCustomPlaceholderFloatingSearchBar"></ion-search-bar>
|
|
|
|
<h5 padding-left> Search - Default Cancel Button </h5>
|
|
<ion-search-bar ng-control="defaultCancel" show-cancel="true" class="e2eDefaultCancelButtonFloatingSearchBar"></ion-search-bar>
|
|
|
|
<h5 padding-left> Search - Custom Cancel Button </h5>
|
|
<ion-search-bar ng-control="customCancel" show-cancel="true" cancel-text="Done" class="e2eCustomCancelButtonFloatingSearchBar"></ion-search-bar>
|
|
|
|
<h5 padding-left> Search - Custom Cancel Button Long</h5>
|
|
<ion-search-bar ng-control="customCancelLong" show-cancel="true" cancel-text="I Am So Done" class="e2eCustomCancelButtonLongTextFloatingSearchBar"></ion-search-bar>
|
|
|
|
<h5 padding-left> Search - Custom Cancel Action</h5>
|
|
<ion-search-bar ng-control="customCancelAction" show-cancel="true" cancel-text="Done" [cancel-action]="myCancelAction" class="e2eCustomCancelActionFloatingSearchBar"></ion-search-bar>
|
|
</form>
|
|
</ion-content>
|