自定义simple_form必需标签

时间:2015-11-10 22:25:29

标签: ruby-on-rails simple-form

我用谷歌搜索了一堆,但我似乎找不到明显的答案。简单表单会在必填字段的标签上添加<abbr title="required">*</abbr>。这太棒了 - 会有什么样的好消息?&#39;能够将此更改为其他内容。我想到的是像<i class="fa fa-check-square"></i>这样的字体真棒图标这么简单。

1 个答案:

答案 0 :(得分:3)

您可以在config/locales/simple_form.en.yml中对其进行修改 - 取消注释simple_form.required.html行并将其更改为您的版本,例如:

en:
  simple_form:
    ...
    required:
      text: 'required'
      mark: '*'
      # You can uncomment the line below if you need to overwrite the whole required html.
      # When using html, text and mark won't be used.
      html: '<i class="fa fa-check-square"></i>'