我在我的rails应用中使用best_in_place,这是git。我正在尝试为其添加激活属性,我已经完成了这些问题:link1和link2并且它运行正常。但我想用相同的激活器激活两个字段。我的观点如下:
<%=best_in_place @new_thread, :title, :html_attrs => {:id => 'new_thread_title'},:activator => ".activator"%>
<%= best_in_place @new_thread, :description, type: :textarea, :html_attrs => {:id => 'new_thread_description'}, :activator => ".activator" %>
我的激活按钮是:
<a href="#" class="activator">Edit</a>
但是当我点击编辑时,只激活描述(textarea)进行编辑。我希望激活标题和描述。欢迎对此问题有任何见解。