brunoalbano / cordova-plugin-decimal-keyboard

Cordova plugin to show decimal keyboard on iPhones

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cordova-plugin-decimal-keyboard

Cordova plugin to show decimal keyboard on iPhones

Installing

cordova plugin add https://github.com/mrchandoo/cordova-plugin-decimal-keyboard.git

Usage

<input type="text" pattern="[0-9]*" decimal="true">

Input type number will not work, try to use text with [0-9] pattern instead.

Multiple decimals

<input type="text" pattern="[0-9]*" decimal="true" allow-multiple-decimals="true">

Different decimal character

<input type="text" pattern="[0-9]*" decimal="true" allow-multiple-decimals="false" decimal-char=",">

If you want to localize decimal character, you can change using decimal-char attribute

Known Issues

  • Does not handle screen rotation.

License

This project is licensed under the MIT License - see the LICENSE file for details

About

Cordova plugin to show decimal keyboard on iPhones

License:Apache License 2.0


Languages

Language:Objective-C 78.1%Language:JavaScript 21.9%