I have an index page with a free form comment field. The Comment field is part of another model that is not associated– long story, part me, part user.
What I need to figure out is what to use to do that. I ran into a problem with Best In Place (here) and am not sure if that is a resolvable path.
So, does anyone have a tutorial or advice to point me to regarding doing in place editing for an index?
What I wound up doing was:
Create a row in the table that was a TextArea and assigned the text area a class:
[sorry I am having a devil of a time with the formatting for this]
Create a controller for the updating of the field in the DB:
Create a jquery function keying off of the class I assigned to the Text Area that passed in the necessary params to the route from the controller…
And that took care of it.