simple_form typeahead和prepend bootstrap错误的异化

时间:2012-05-24 08:39:24

标签: ruby-on-rails-3 twitter-bootstrap simple-form

正如您在附件中看到的那样,如果我将类'typeahed'提供给我的输入字段,则输入字段不会与pre-pend对齐。

enter image description here

enter image description here

以下是要输出的代码:

<%= f.input :notary_name,:label => 'Notary', :input_html => {:class => "span4"}, :wrapper => :prepend do %>
  <span class="add-on"><i class="icon-search"></i></span><%= f.input_field :notary_name, :class => "span4 typeahead" %>
<%end%>

如果我更改某些文字的图标,则问题是相同的。

感谢,

1 个答案:

答案 0 :(得分:0)

解决了,这是一个愚蠢的错误,在<%=之后还有一个额外的空间

错误的代码     <%= f.input_field :notary_name, :class => "span4 typeahead" %>

正确     <%=f.input_field :notary_name, :class => "span4 typeahead" %>