cordova-plugin-decimal-key

1.2.2 • Public • Published

Install

cordova plugin add --save cordova-plugin-decimal-key

NPM

This cordova plugin has been built for showing up a decimal keyboard on iOS devices. It supports light and dark themes.

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

Different button character

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

If you want to use another character for button, you can change it using button-char attribute

Known Issues

  • Does not handle screen rotation.

License

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

Package Sidebar

Install

npm i cordova-plugin-decimal-key

Weekly Downloads

16

Version

1.2.2

License

MIT

Unpacked Size

406 kB

Total Files

12

Last publish

Collaborators

  • exxbrain