Currently, this plugin is compatible with ActiveScaffold >= 3.4 gem.
This plugin adds a signaturepad form_ui to display a signature area. It uses jquery.signaturepad
You’ll need at least ActiveScaffold 3.4 to use this
gem install active_scaffold_signaturepad
Set column to use :signaturepad form_ui
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)
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
If you have issues installing the plugin, search / post to the Active Scaffold forum or Create an issue
Fork, hack, push, and request a pull:
http://github.com/activescaffold/active_scaffold_signaturepad/
Released under the MIT license (included).