Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
2k views

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 ...
1
vote
1answer
419 views

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 ...
1
vote
1answer
483 views

(Rails) In-place editing of attributes via an “index” page

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, ...
1
vote
1answer
952 views

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 ...