LoginSignup
0
1

More than 5 years have passed since last update.

(メモ)simple_formでhintをキャンセルしたい

Posted at

前提

  • rails 4.2.4
  • simple_form 3.0.2

なんで書いたか

ググってもすぐ出てこなかったので

困った事

便利なhintだけど場合によっては必要無いときがある。

= simple_form_for @user
  = f.input :name
<p class="help-block">名前を入力してください。</p>

消したいと思い、空文字やnilにすると

= simple_form_for @user
  = f.input :name, hint: ''
<p class="help-block"></p>

hint-blockだけ出てきてしまってレイアウト上邪魔

解決方法

hint: falseにする事でhint-blockごと消える

= simple_form_for @user
  = f.input :name, hint: false
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1