Skip to content
This repository has been archived by the owner on Nov 16, 2017. It is now read-only.

Latest commit

 

History

History
25 lines (13 loc) · 493 Bytes

README.rdoc

File metadata and controls

25 lines (13 loc) · 493 Bytes

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