我正在使用宝石'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 %>
现在,当我尝试编辑此页面并单击文本框时,将清除所有文本。 但我想只编辑(追加或更改数据) 我怎么能这样做?
答案 0 :(得分:0)
好吧,我自己的javascript问题是清除模糊文本。