This input:
<%= f.input :keywords, label: false, :input_html => {:class => "span8"}, :placeholder => "Park Slope, Prospect Heights, Fort Green..." %>
Produces this:
<div class="control-group string optional">
<div class="controls">
<input class="string optional span8" id="search_keywords" name="search[keywords]" placeholder="Park Slope, Prospect Heights, Fort Green..." size="50" type="text" />
</div>
</div>
How do I just generate the input
alone without the divs around it?
Thanks.
use the regular
text_field
So it seems the best way to do this is to use
f.input_field
.The docs for Simple_Form don't quite spell it out, but you can view the actual API docs here.
From the docs:
Will Produce:
Well do something like this pass a params
wrapper: false
like thisAnd See it would work
Hope this help