dpodium / yii2-colorpicker
A simple yii2 color picker widgent
Installs: 8 720
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 5
Forks: 0
Open Issues: 0
Language:JavaScript
Type:yii2-extension
Requires
- yiisoft/yii2: *
This package is auto-updated.
Last update: 2024-10-12 19:06:40 UTC
README
This widget is based on jQuery plugin by Stefan Petre (http://www.eyecon.ro/colorpicker/)
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist dpodium/yii2-colorpicker "*"
or add
"dpodium/yii2-colorpicker": "*"
to the require section of your composer.json
file.
Usage
Once the extension is installed, simply use it in your code by :
<?= \dpodium\colorpicker\ColorPickerWidget::widget(['id' => 'color-picker', 'name' => 'color-picker']); ?>```