我希望在项目的“索引”页面上使用“in_place_editor_field”。基本上我想为预先存在的订单项模仿电子表格功能,以便编辑它们的属性。但是,我所见过的“in_place_editor”示例都没有提供这种性质的任何有用的实际应用程序。
此外,许多现有的代码示例都不起作用。我知道代码已从 Core 中删除,但即使将其作为插件安装后,它似乎也没有做任何事情。
有任何想法吗?
最好的。
我希望在项目的“索引”页面上使用“in_place_editor_field”。基本上我想为预先存在的订单项模仿电子表格功能,以便编辑它们的属性。但是,我所见过的“in_place_editor”示例都没有提供这种性质的任何有用的实际应用程序。
此外,许多现有的代码示例都不起作用。我知道代码已从 Core 中删除,但即使将其作为插件安装后,它似乎也没有做任何事情。
有任何想法吗?
最好的。
我想做同样的事情。我在http://docs.activestate.com/komodo/5.0/tutorial/railstut.html找到了一个示例 一直滚动到底部并查看 index.html.erb。
诀窍是 in_place_editor_field 需要处理实例变量,因此在循环中,您需要设置实例变量并将其传递给标记。
我认为这个例子更好:
<table>
<tr>
<th>First name</th>
<th>Last name</th>
</tr>
<% @person.each do |person| %>
<tr>
<td><%= best_in_place person, :first_name %></td>
<td><%= best_in_place person, :last_name %></td>
</tr>
<% end %>
</table>
我从这个页面得到这个