这个片段来自我的管理员。我在图像旁边有一个描述字段,以及它下面的演示。
现在它在页面刷新后工作,但我希望它使用 AJAX 异步工作,所以当用户键入它时,它会更新 textarea 下面的演示。
#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>