I am using bootstrap and I'd like to know if it's possible to append an
icon (or any html) before or after the error message displayed with
simpleform
something like this (inside help-inline)
<div class="control-group error">
<label for="inputError" class="control-label">Input with error</label>
<div class="controls">
<input type="text" id="inputError">
<span class="help-inline">
<i class="icon-alert"></i> Please correct the error
</span>
</div>
</div>
I can wrap with tags, but it's possible to append or preppend?
b.use :error, :wrap_with => { :tag => :span, :class => :error }