使用SimpleForm无法为某些(Text,Booleans,...)类型创建自定义输入

时间:2011-09-15 18:17:38

标签: ruby-on-rails-3 customization simple-form formbuilder

我无法弄清楚为什么它不能正常工作 - 或者 - 我错过了一些重要的东西?

以下是simple_form / lib / simple_form / form_builder.rb中的映射类型列表:

map_type :text,                                :to => SimpleForm::Inputs::TextInput
map_type :file,                                :to => SimpleForm::Inputs::FileInput
map_type :string, :email, :search, :tel, :url, :to => SimpleForm::Inputs::StringInput
map_type :password,                            :to => SimpleForm::Inputs::PasswordInput
map_type :integer, :decimal, :float,           :to => SimpleForm::Inputs::NumericInput
map_type :range,                               :to => SimpleForm::Inputs::RangeInput
map_type :select, :radio, :check_boxes,        :to => SimpleForm::Inputs::CollectionInput
map_type :date, :time, :datetime,              :to => SimpleForm::Inputs::DateTimeInput
map_type :country, :time_zone,                 :to => SimpleForm::Inputs::PriorityInput
map_type :boolean,                             :to => SimpleForm::Inputs::BooleanInput

第一个问题,我可以将StringInput类扩展为:

#app/inputs/string_input.rb
class StringInput < SimpleForm::Inputs::StringInput
  def input
    if @builder.show?
      content_tag(:p, @builder.object[attribute_name], :class => :show)
    else
      super
    end
  end
end

(我使用show?方法扩展了构建器以检测上下文:action =='show')

这大部分时间都在工作,但在:as => :string出现时却没有:

<%= f.input :estimated_duration_rendered, 
  :as => :string,
  :label => mt(:estimated_duration), 
  :hint => mt(:estimated_duration_hint),
  :error => false,
  :required => false,
  :input_html => { :class => :digits_11, :placeholder => mt(:estimated_duration_placeholder), :value => format_duration(resource.estimated_duration, true) }
%>

第二个问题,我可以为StringInput,DateTimeInput,CollectionInput和BooleanInput创建自定义输入,但所有其他输入都不起作用。例如:

#app/inputs/text_input.rb
class TextInput < SimpleForm::Inputs::TextInput
  def input
    if @builder.show?
      "I will never show..."
    else
      super
    end
  end
end

即使我的表格中有这个帮手:

<%= f.input :description, 
            :label => mt(:description), 
            :hint => mt(:description_hint, :max => MyModel::DESC_MAX_LENGTH), 
            :input_html => { :class => :large, :rows => 8, :cols => 1, :maxlength => MyModel::DESC_MAX_LENGTH, :placeholder => mt(:description_placeholder) }, 
            :error => false
%>

当然,描述有文本数据类型。

我做错了什么?

谢谢。

FRO

1 个答案:

答案 0 :(得分:2)

好吧,要使用此功能,您只需要SimpleEorm的 1.5.1 版本。 : - )