我尝试使用带有rails 4.0.x的simple_form
3.0.x向我的输入和标签字段添加自定义类。
这是我的simple_form配置文件。
SimpleForm.setup do |config|
config.wrappers :vertical_form, tag: 'div', error_class: 'has-error' do |b|
b.wrapper tag: 'div' do |ba|
b.use :label, class: 'input-group-addon'
b.use :input, class: 'form-control'
end
end
config.default_wrapper = :vertical_form
end
这是表格
<%= simple_form_for [:manage, @exam], wrapper: :vertical_form do |f| %>
<%= f.input :raw_published_at %>
<% end %>
和给定的输出
<form accept-charset="UTF-8" action="/manage/exams/7-vt-2014" class="simple_form edit_exam" id="edit_exam_7" method="post">
<div class="string optional exam_raw_published_at">
<label class="string optional" for="exam_raw_published_at">
Raw published at
</label>
<input class="string optional" id="exam_raw_published_at" name="exam[raw_published_at]" type="text" value="04/05/2014" />
<div>
</div>
</div>
<input class="btn btn-primary" name="commit" type="submit" value="Update" />
</form>
为什么我的自定义类没有被添加?
答案 0 :(得分:1)
而不是使用它:
<%= f.input :xxxxx, :class => "my_custom_class" %>
使用此:
<%= f.input :xxxxx, :input_html => { :class => "my_custom_class" } %>