Sha256: a921c4b5a88ae12ff4c2345478d5c450ceda144d7af324ec6de3118561428a11

Contents?: true

Size: 830 Bytes

Versions: 7

Compression:

Stored size: 830 Bytes

Contents

module WWW
  class Mechanize
    class Form
      # This class represents a radio button found in a Form.  To activate the
      # RadioButton in the Form, set the checked method to true.
      class RadioButton < Field
        attr_accessor :checked
      
        def initialize(name, value, checked, form)
          @checked = checked
          @form    = form
          super(name, value)
        end

        def check
          uncheck_peers
          @checked = true
        end

        def uncheck
          @checked = false
        end

        def click
          checked ? uncheck : check
        end

        private
        def uncheck_peers
          @form.radiobuttons_with(:name => name).each do |b|
            next if b.value == value
            b.uncheck
          end
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 5 rubygems

Version Path
eric-mechanize-0.9.3.20090623142847 lib/www/mechanize/form/radio_button.rb
knu-mechanize-0.9.3.20090623142847 lib/www/mechanize/form/radio_button.rb
tenderlove-mechanize-0.9.3.20090617085936 lib/www/mechanize/form/radio_button.rb
tenderlove-mechanize-0.9.3.20090623142847 lib/www/mechanize/form/radio_button.rb
mechanize-ntlm-0.9.1 lib/www/mechanize/form/radio_button.rb
mechanize-0.9.2 lib/www/mechanize/form/radio_button.rb
mechanize-0.9.3 lib/www/mechanize/form/radio_button.rb