extead/yii2-autonumeric

Input format extension for Yii 2.0 based on autoNumerical plugin


Keywords
jquery, bootstrap, money, currency, extension, number, format, widget, yii2, mask, bootstrap 3, autonumeric
License
0BSD

Documentation

AutoNumeric plugin

Input format extension for Yii 2.0 based on autoNumerical plugin https://github.com/BobKnothe/autoNumeric

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist extead/yii2-autonumeric "*"

or add

"extead/yii2-autonumeric": "*"

to the require section of your composer.json file.

Usage

For all pluginOptions see autoNumeric docs - https://github.com/BobKnothe/autoNumeric.

Once the extension is installed, simply use it in your code by :

<?=$form->field($model, 'price')->widget(\extead\autonumeric\AutoNumeric::classname(), [
                'pluginOptions' => [
                    'aSep' => ' ',
                    'mDec' => 0
                ]
            ]);?>