現時点では、このエディターを使用しています http://cksource.com/ckeditor 問題は、新しいフォームにアクセスするとテキストエリアが機能しないことですが、ブラウザーで新しいフォームを更新すると正常に機能します
私の部分はそのようなものです
<%= 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>
この問題を解決するにはどうすればよいですか?
どうもありがとう