0.03
Repository is archived
No commit activity in last 3 years
No release in over 3 years
In Place Editing Rails Plugin
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

in_place_editing¶ ↑

A Rails plugin for in-place editing fields.

Installation¶ ↑

In the Gemfile:

gem 'in_place_editing'

Usage¶ ↑

In your controller define what model and fields you want in-place editing support for.

class BlogController < ApplicationController
  in_place_edit_for :post, :title
end

In a view tell it where to place the JS and data.

<%= in_place_editor_field :post, 'title' %>

Copyright © 2007 David Heinemeier Hansson, released under the MIT license