Reputation: 87
How can I get the keyboard never show in ionic ion-input?, even when it have the focus. I try with keyboard pluging but when it take the focus, the keyboard appears.
Thank you.
Upvotes: 0
Views: 1420
Reputation: 1897
Add disabled="true in ion-input
<ion-input **disabled="true**" type="text" name="DOB" (click)="openDatepicker()" [(ngModel)]="today" ng-readonly></ion-input>
Refer this :How to hide native android keyboard in IONIC 2 when clicking on a text box?
Upvotes: 1