Is it possible to show and customize the native keyboard with Ionic framework? Lets say for example that I want to show the native keyboard when you come to a state and I want the keyboard to only contain specific characters (only letter for example).
标签:
ionic-framework
相关问题
- Plugin with id 'com.google.gms.google-services
- How to pass form data from Ionic 3 to PHP file?
- apk big size with ionic 4 build
- Ionic Spinner not showing up
- Is there any way to make the background of a 3D-mo
相关文章
- Ionic 4: Hardware Back Button Reloading Applicatio
- ionic - Copy/paste in input field in iOS 10 not wo
- net::ERR_CONNECTION_REFUSED ionic
- Typescript Error: Property 'files' does no
- ionic 4 + angular: routerLink only works first tim
- Ionic conditional class css
- Ionic tabs and side menu navigation issue
- After reseting plugins, Ionic 2 program doesn'
Input Type Method
Although you cannot change the makeup of the keyboard, you can use different
type
parameters on your input elements to control which type of keyboard mobile devices will show.For an overview of the different types of inputs, check out this site.
Return False Method
In addition to changing the type of keyboard that displays, you can also specifically allow or disable certain characters. Accomplish this by checking each keycode as it is typed. For a reference of keycodes, see here.
You can do this with the keyboard plugin. Checkout this plugin
http://ngcordova.com/docs/plugins/keyboard/