Low commit activity in last 3 years
No release in over a year
Helper to display a signature zone on ActiveScaffold forms, using jquery.signaturepad
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 2.0

Runtime

 Project Readme

Signaturepad for ActiveScaffold

Currently, this plugin is compatible with ActiveScaffold >= 3.4 gem.

Overview

This plugin adds a signaturepad form_ui to display a signature area. It uses jquery.signaturepad

Installation

You’ll need at least ActiveScaffold 3.4 to use this

gem install active_scaffold_signaturepad

Usage

Step 1

Set column to use :signaturepad form_ui

Step 2

Setup signaturepad using options method on column

# app/controllers/visitors_controller.rb

class VisitorsController < ApplicationController
  active_scaffold :visitor do |config|
    config.columns[:signature].form_ui = :signaturepad
    config.columns[:signature].options = {
      :width => 150, # canvas width, default 250
      :height => 55, # canvas height, default 100
      :line_colour => 'transparent' # colour for signature line on canvas, transparent for none
    }
  end
end

Available options: line_colour, line_width, line_margin, line_top, bg_colour, pen_colour, pen_width, pen_cap, error_message_draw

See jquery.signaturepad doc for reference about options

If error_message_draw is a symbol it will be translated (using as_ method, so it must be on active_scaffold namespace)

Save image

Signaturepad sends a JSON representation to signature. It can be converted to image on server, adding some code to model:

https://gist.github.com/branch14/4258871

Support

If you have issues installing the plugin, search / post to the Active Scaffold forum or Create an issue

Contributing

Fork, hack, push, and request a pull:

http://github.com/activescaffold/active_scaffold_signaturepad/

License

Released under the MIT license (included).