Sha256: c8b97ee3af46bfbd49b0e01ad616dbdacfff16e4abcbfe793a18560efe8aa92c

Contents?: true

Size: 1.47 KB

Versions: 1

Compression:

Stored size: 1.47 KB

Contents

module JqueryUiForm 
  module Inputs
    module RadioInput
      
      def radio_input(method, options = {})
        # radio_button(method, tag_value, options)
        legend, options = label_text(method, options)
        collection = options.delete(:collection)
        label_options = options.delete(:html_label) || {}
        label_options[:required] = options.delete(:required)
        buttonset = options.delete(:buttonset) || false
        fieldset_options = {}
        fieldset_options[:class] = "to-buttonset" if buttonset
        output = fieldset(legend.html_safe, fieldset_options) do
          template.concat(inline_hint(options.delete(:hint)))
          template.concat(inline_error(method))
          collection.each do |row|
            id, value = (row.is_a?(Array) ? row : [row, row])
            if @object
              checked = @object.send(method) == id
            else
              checked = options[:value] == id
            end
            if buttonset
              template.concat(radio_button(method, id, options.merge(:checked => checked)))
              template.concat(label(name_to_id("#{method}_#{id}"), value, label_options))
            else
              template.concat(column do
                template.concat(label(name_to_id("#{method}_#{id}"), value, label_options))
                template.concat(radio_button(method, id, options.merge(:checked => checked)))
              end)
            end
          end
        end
      end
      
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jquery-ui-form-0.1.1 lib/jquery_ui_form/inputs/radio_input.rb