このスニペットは私の管理者からのものです。画像の横に説明フィールドがあり、その下にどのように表示されるかのデモがあります。
現在、ページの更新後に機能しますが、AJAXを使用して非同期で機能するようにしたいので、ユーザーが入力すると、テキストエリアの下のデモが更新されます。
#This is where you update the field
<tr><th>Description</th><td><%= f.text_area(:description) %></td></tr>
<tr><th>Demo</th>
<td>
<% if @org.images.present? %>
<table border="0">
<tr>
<td>
<%= featured_image_tag(@org, :type => 'organization') %>
</td>
<td style="vertical-align:top;padding-top:5px;padding-left:5px;">
<span class="font-avebook"><%= @org.description %> </span><br>
</td>
</tr>
</table>
<% else %>
You need to assoicate an image first before seeing the demo!
<% end %>
</td>
</tr>