Displaying 1 result from an estimated 1 matches for "frame_price__in_place_editor".
2006 Aug 12
5
In place editing on a list - not passing ID through
...the ID passed through to the controller.
I use this in my view to create the field:
<% for frame in @frames %>
...
<%= in_place_editor_field :frame, :price %>
<% end %>
and this produces the following in my output:
<span class="in_place_editor_field"
id="frame_price__in_place_editor">0.0</span>
<script type="text/javascript">
//<![CDATA[
new Ajax.InPlaceEditor(''frame_price__in_place_editor'',
''/frames/set_frame_price'')
//]]>
</script>
I understand from some research that what I''m after is t...