Displaying 2 results from an estimated 2 matches for "in_place_select_editor_field".
2006 May 02
0
The "in_place_select_editor_field" in the next release?
Are "in_place_select_editor_field" describe in Rails Recipes book good
enogth to be part of the next release?
what you think about it?
--
_________
Noel R. Morais
2006 Jul 24
2
InPlaceSelectEditor question
...ns language_id (among other fields, of course)
Table language contains id, lang (the latter having the language in
English)
<% for @item in job.items %>
<tr>
<td><%= in_place_editor_field :item, :title %></td>
<td><%= in_place_select_editor_field(
:item,
:language_id,
{},
:select_options =>
options_from_collection_for_select(@languages, ''id'', ''lang'')) %>
</td>
( ... more code ... )
</tr>
&l...