extead / yii2-autonumeric
Input format extension for Yii 2.0 based on autoNumerical plugin
Package info
github.com/extead/yii2-autonumeric
Type:yii2-extension
pkg:composer/extead/yii2-autonumeric
v0.1.2
2018-05-04 11:43 UTC
Requires
- bower-asset/autonumeric: ^1.9
- yiisoft/yii2: ^2.0.0
README
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 ] ]);?>