私は宝石「formtastic」、「2.1」を使用しています私のモデル:employee.rb
class Employee < ActiveRecord::Base
attr_accessible :name, :designation, :about
end
私の見解(edit.html.erb)
<%= semantic_form_for [:admin,@employee], :html => { :multipart => true, :class =>"form" } do |f| %>
<%= f.inputs do %>
<%= f.input :name, :hint => "should be less then or equal to 30 characters" %>
<%= f.input :designation %>
<%= f.input :about, :input_html => { :rows => 5 } %>
<% end %>
<%= f.buttons do |button| %>
<button class="button" type="submit">
</button>
<% end %>
<% end %>
このページを編集してテキストボックスをクリックすると、すべてのテキストがクリアされます。しかし、編集 (データへの追加または変更) をしたいのですが、どうすればそれを行うことができますか?