in-place-edit

rails in_place_edit: how do I pass an authenticity token?

I am trying to get in place editing working but I am running into this error: ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken) I understand that rails now wants to protect against forgery and that I need to pass a form authenticity token but I am not clear on how to do this with the in_place_edit ...

How to use in_place_editing instead of fields_for?

I setup a User model with restful_authentication and then have a Profile model that belongs to it. I've been using fields_for to combine the fields for editing a User and that user's profile into the User edit view. I'd like to be able to set a few of the fields to use the in_place_editing plugin on the User show view. It works fine on ...

(Rails) In-place editing of attributes via an "index" page.

Hi All, I'm looking to use "in_place_editor_field" on an "Index" page of items. Basically I want to mimic spreadsheet functionality for pre-existing line items in order to edit their attributes. However, none of the "in_place_editor" examples I've seen provide any useful real-world application of this nature. Also, a lot of the exi...

How to use in_place_edit plugin for rails with partials?

I am using the "in_place_editing" plugin for rails to render a form with in-place edits. Thing work fine as long as the default template is chosen by rails (no 'render' method is invoked inside the controller), but they break down when I try to render a partial using "render :partial => 'partial_name'" call. Is this a known issue (in_pl...