No commit activity in last 3 years
No release in over 3 years
"hstore_input" field allow to edit hstore value as json array with using jsoneditor.js from http://jsoneditoronline.org
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.5

Runtime

< 5.0, >= 3.0
 Project Readme

ActiveAdmin::HstoreEditor

"hstore_input" field type to active_admin that allow to edit Postgresql hstore values as json tree. Data shown by using jsoneditor.js from http://jsoneditoronline.org

Installation

Add this line to your application's Gemfile:

gem 'activeadmin_hstore_editor'

And then execute:

$ bundle

Or install it yourself as:

$ gem install activeadmin_hstore_editor

Include styles in "active_admin" initializer

config.register_stylesheet 'active_admin/hstore_editor.css'

Include javascripts in "active_admin" initializer

config.register_javascript 'active_admin/hstore_editor.js'

Usage

This Gem provides you formtastic input called :hstore to edit hstore data and parse form data for store it

ActiveAdmin.register User do
  permit_params :settings

  hstore_editor

  # specify the type does not necessarily
  form do |f|
    f.inputs do
      f.input :settings, as: :hstore
    end

    f.actions
  end
end

Contributing

  1. Fork it ( http://github.com/wild-ex/activeadmin_hstore_editor/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request