Rails: How to disable asterisk on form's required fields?
问题 When I add the 'Required' attribute to html input fields, Rails pre-pends an asterisk (*) before the label. Does anyone know how to prevent this? For some reason Rails transforms this: <%= f.input :Company, :input_html => {:value => "", :id => "company_name"}, :label => "company name" %> into this: <div class="input string required"> <label for="company_name" class="string required"> <abbr title="required">*</abbr> company name</label> <input type="text" value="" size="50" required="required"