Skip to content

It is a very tiny component which is a replacement of HTML input element for post-editing format of number values. ex. 1000000 -> 1,000,000

License

Notifications You must be signed in to change notification settings

blackbing/react-numeral-input

Folders and files

NameName
Last commit message
Last commit date

Latest commit

86faaf0 · Jul 5, 2018

History

67 Commits
Jul 5, 2018
Jul 5, 2018
Jul 5, 2018
Sep 27, 2016
Sep 27, 2016
Mar 1, 2017
Aug 2, 2015
Jul 5, 2018
Sep 28, 2016
Sep 27, 2016
Jul 5, 2018
Sep 27, 2016
Sep 27, 2016
Aug 22, 2016

Repository files navigation

react-numeral-input npm version Build Status

It is a very tiny component which is a replacement of HTML input element for post-editing format of number values.

ex. 1000000 -> 1,000,000

react-numeral-input

use Number Keyboard on device

use Number Keyboard on device

Live Demo

react-numeral-input

Dependency

install

npm install react-numeral-input

Usage

// replace original input from
<input value={this.state.numeralVal} className="" placeholder="" onChange={this.onChange} />

// like this
<NumeralInput value={this.state.numeralVal} className="" placeholder="" onChange={this.onChange} />

Example

let NumeralInput = require('react-numeral-input');

module.exports = React.createClass({
  getInitialState() {
    return {
      numeralVal: 1000000
    }
  },
  onChange(val){
    this.setState( {numeralVal:val});
  },
  render() {
    return (
      <NumeralInput
        value={this.state.numeralVal}
        className="form-control"
        placeholder=""
        onChange={this.onChange} />
    )
  }
});

Options

You can set any original input props. such as minlength, maxlength. For example:

<NumeralInput value={this.state.numeralVal} className="" placeholder="" onChange={this.onChange} minLength={2} maxLength={10}/>

fmt(:string)

Default: "0,0"

It is passed to configure numeral format, You can find more information from Numeral.js.

onChange(:function)

Callback when value is changed, you will receieve unformated number (1000000 instead of 1,000,000).

About

It is a very tiny component which is a replacement of HTML input element for post-editing format of number values. ex. 1000000 -> 1,000,000

Resources

License

Stars

Watchers

Forks

Packages

No packages published