diggindata / yii2-signaturepad
Yii2 widget to display a signature pad using https://github.com/INTELOGIE/signature_pad
Installs: 5 118
Dependents: 0
Suggesters: 0
Security: 0
Type:yii2-extension
pkg:composer/diggindata/yii2-signaturepad
Requires
- yiisoft/yii2: ~2.0.0
This package is auto-updated.
Last update: 2025-10-26 21:42:32 UTC
README
This extension provides a Signature Pad widget for Yii framework 2.0.
It wraps the INTELOGIE/signature_pad library.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist diggindata/yii2-signaturepad
or add
"diggindata/yii2-signaturepad": "@dev"
to the require section of your composer.json, then run composer update.
Usage
In your form model, declare an attribute:
    public $signature;
    public function rules()
    {
        return [
            ...
            ['signature', 'safe'],
        ];
    }
In your form view file, include the widget:
    <?= SignaturePadWidget::widget([
        'model' => $model,
        'attribute' => 'signature',
        'options' => ['style' => 'min-width:300px;min-height:200px;'],
        'showSaveAsJpg' => false,
    ]) ?>
Attributes
model - The form instance, either a yii\db\ActiveRecord or a yii\base\Model instance
attribute - the model's attribute name
showSaveAsJpg - Whether to show the Accept (JPG) and Save (JPG) buttons
showSaveAsPng - Whether to show the Accept (PNG) and Save (PNG) buttons