1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

time_selectのセレクト欄を30分毎に表示する方法

Posted at

状態

Railsでアプリ作成していて、time_selectを使い時間を入力させたいが、デフォルトだと1分単位で使いにくかったので、30分単位にしました。

方法

まず現状

= f.time_select :end, {}, class: 'content__main__box__field__select'

これだと1分ごとの表示に加え、現在時刻が自動でセレクト欄に入ってしまう。

= f.time_select :end, {:include_blank => true, :minute_step => 30}, class:'content__main__box__field__select'

これで00分と30分のみ選択できるようになり、現在時刻が自動でセレクト欄に入らず、しっかり空欄になりました。

改めてググる力の大切さを学びました!笑
検索してもうまくヒットさせられず、時間がかかりました、、、。

日々勉強ですね。

1
2
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
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?