這時我使用這個編輯器http://cksource.com/ckeditor 的事情是,當我在新的形式訪問textarea的不工作,但如果我更新瀏覽器的新形式,它的工作原理確定在textarea的使用編輯器軌道
我的部分就是這樣
<%= simple_form_for [@version, @documento], :html => { :class => 'form-horizontal' } do |f| %>
<table width="100%">
<tr>
<th>Nombre</th>
<td><%= f.input :name,
:label => false,
:input_html => {:style => 'width: 380px;'} %>
</td>
</tr>
<tr>
<th>Tipo de Documento</th>
<td>
<%= f.association :tipo,
:label => false,
:required => true,
:input_html => {:class => 'span2'}
%>
<%= link_to 'Nuevo',new_tipo_path, :remote => true %>
</td>
</tr>
<tr>
<th>Descripcion</th>
<td><%= f.input :descripcion,
:label => false,
:input_html => {:class => "ckeditor", :id => "descripcion"} %>
</td>
</tr>
</table>
<div class="form-actions">
<%= f.button :submit, :class => 'btn btn-primary', :value => 'Guardar Documento' %>
<%= link_to 'Cancelar', version_documentos_path(@version), :class => 'btn' %>
</div>
我能做什麼來解決這個問題?
非常感謝
我做了你告訴我,但繼續同樣的問題,我需要更新新的形式使用ckeditor,我正在使用rails 4.0 – Andru1989
我只是做了一個測試與香草欄4但一切工作正常 - 你可以看到我做的示例項目,以測試它是否有幫助,但它聽起來像你有一些更深的問題這是尚未描述:https://github.com/trh/rails4_ckeditor_example – trh
我找到了解決方案,但不是很好,因爲我需要卸載寶石turbolinks,寶石是問題,你知道我怎麼能用它turbolinks呢??或者,也許可以配置一個link_to,它不能在同一個項目中使用turbolinks ... – Andru1989