4

我正试图让我的收音机和复选框作为带有切换功能的按钮工作,如 twitters 引导页面上所示。链接

我设法让这些按钮出现并与数据库一起运行,但是当用户返回页面时,它们不会被切换。我想知道这是否可能。如果是,我该如何在我的代码上实现它?我正在使用 simple_form + twitter 引导程序。

这是我用来显示单选按钮的代码:

<div class="btn-group" data-toggle="buttons-radio">
<%= f.input :child_gender, :label => "Child gender?", :collection => [['Boy', 'Boy'], ['Girl', 'Girl'], :as => :radio_buttons, :input_html => { :data => {:toggle => 'buttons-radio'} }, :item_wrapper_class => 'btn btn-toggle btn-small inline' %>
</div>

这是复选框按钮的代码:

<div class="btn-group">
<%= f.input :child_size, :label => "What size?", :collection => child_size, :as => :check_boxes, :input_html => { :data => {:toggle => 'buttons-checkbox'} }, :item_wrapper_class => 'btn btn-toggle btn-small' %>
</div>

这是我拥有的自定义CSS btn-toggle

.btn-toggle input {
    display: none;
}

任何帮助表示赞赏。

4

3 回答 3

4

从 Nickl 的答案构建并调整事物以不需要额外的 Javascript 并呈现 Bootstrap 当前期望的相同语义 HTML,这是我的解决方案:

class ButtonRadioInput < SimpleForm::Inputs::CollectionRadioButtonsInput
  def input
    out = '<div class="btn-group" data-toggle="buttons">'
    label_method, value_method = detect_collection_methods
    collection.each do |item|
      value = item.send(value_method)
      label = item.send(label_method)
      active = ''
      active = ' active' unless
          out =~ / active/ ||
          input_html_options[:value] != value &&
          item != collection.last
      input_html_options[:value] = value unless active.empty?
      btn = 'btn'
      btn = "btn btn-#{item.third}" unless item.third.nil?
      out << <<-HTML
        <label class="#{btn} #{active}">    
          <input type="radio" value="#{value}" name="#{attribute_name}">#{label}</input>
        </label>
HTML
    end
    out << "</div>"
    out.html_safe
  end
end

然后要使用它,您将使用 SimpleForm :

=f.input :role, label: false, as: :button_radio, 
                    collection: [["Warm Up", :warm_up, :primary],
                                ["Small Sided", :small_sided, :primary],
                                ["Expanded", :expanded, :primary],
                                ["Game", :game, :primary]]

这将像Bootstrap 自己的组件页面中的单选按钮示例一样呈现代码。

于 2014-09-08T01:47:41.713 回答
2

simple_form input这是我们需要的引导单选按钮的缺失。

# lib/inputs/button_radio_input.rb
class ButtonRadioInput < SimpleForm::Inputs::CollectionRadioButtonsInput
  def input
    out = <<-HTML

<div class="btn-group" data-toggle="buttons-radio">
HTML
    input_field = @builder.hidden_field(attribute_name, input_html_options)
    input_id = input_field[/ id="(\w*)/, 1]
    label_method, value_method = detect_collection_methods
    collection.each {|item|
      value = item.send(value_method)
      label = item.send(label_method)
      on_click = "document.getElementById('#{input_id}').value='#{value}';return false;"
      active = ''
      active = ' active' unless
          out =~ / active/ ||
          input_html_options[:value] != value &&
          item != collection.last
      input_html_options[:value] = value unless active.empty?
      btn = 'btn'
      btn = "btn btn-#{item.third}" unless item.third.nil?
      out << <<-HTML
  <button onclick="javascript:#{on_click}" type="button" class="#{btn}#{active}">#{label}</button>
HTML
    }
    value = <<-VAL
value="#{input_html_options[:value]}"
VAL
    input_field[/value="[^"]*"/] = value.chomp if input_field =~ /value/
    input_field[/input/] = "input #{value.chomp}" unless input_field =~ /value/
    out << <<-HTML
  #{input_field}
</div>
HTML
    out.html_safe
  end
end

它支持as: :radio_buttons通过为按钮样式添加可选的第三个参数来接受的所有内容。

= f.input :rad_buttons,
  as: :button_radio,
  collection: [ [:blue, 1, :primary],
    [:red, 2, :danger],
    [:green, 3, :success],
  ]

上面的 haml 片段将生成一个三个单选按钮组

  • 第一个btn-primary带有标签blue和值的按钮1
  • 第二个按钮样式为btn-danger带有标签red和值2
  • 第三个按钮样式为btn-success带有标签green和值3

由于我们没有分配input_html: {value: 1}rad_buttons3

开心!

于 2013-10-11T10:30:37.003 回答
2

您还可以使用带有一些不显眼的 JavaScript 的隐藏输入字段。将隐藏字段与您的 *.html.erb 中的 twitter 引导工具按钮放在一起:

<%= f.hidden_field :child_gender %>
<div id="gender-toggle" class="btn-group" data-toggle="buttons-radio">
  <button type="button" class="btn" data-gender="boy">Boy</button>
  <button type="button" class="btn" data-gender="girl">Girl</button>
</div>

在您的 *.js.coffee 中,只需设置活动按钮和输入值:

# Activate selected gender
$("button[data-gender=" + $('#hidden_field_id').val() + "]").addClass('active')

# Set gender value
$("#gender-toggle button").click -> 
  $('#hidden_field_id').val($(this).data('gender'))

希望这可以帮助。

于 2013-02-20T20:27:11.113 回答