3
1

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 5 years have passed since last update.

Rails formtastic-bootstrapでradioボタンを横並びにする方法

Last updated at Posted at 2015-04-22

bootstrapでradioボタンを横並び(horizontal)にするには<div class="radio"のところにradio-inlineクラスを指定する必要があるが、Railsのformtasticだけではうまく指定できない。

formtastic-bootstrap拡張のinline: trueを使えばよい。

検索してもあまりずばりとした例がでてこなかったのでググラビリティ向上のため使用例を挙げておく。

  • 使用例
= f.input :radio, as: :radio, collection: [["select hoge1", "hoge1"],["select hoge2", "hoge2"]], label: false, inline: true

ソース

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?