Sha256: d24a03d2e6acd336cc5cea1ac018033a90679579646a00b70c6b5cfe92aec338
Contents?: true
Size: 1.77 KB
Versions: 6
Compression:
Stored size: 1.77 KB
Contents
# This class represents a select list where multiple values can be selected. # MultiSelectList#value= accepts an array, and those values are used as # values for the select list. For example, to select multiple values, # simply do this: # # list.value = ['one', 'two'] # # Single values are still supported, so these two are the same: # # list.value = ['one'] # list.value = 'one' class Mechanize::Form::MultiSelectList < Mechanize::Form::Field extend Mechanize::ElementMatcher attr_accessor :options def initialize node value = [] @options = [] # parse node.search('option').each do |n| option = Mechanize::Form::Option.new(n, self) @options << option end super(node, value) end ## # Find one option on this select list with +criteria+ # Example: # select_list.option_with(:value => '1').value = 'foo' ## # Find all options on this select list with +criteria+ # Example: # select_list.options_with(:value => /1|2/).each do |field| # field.value = '20' # end elements_with :option def query_value value ? value.collect { |v| [name, v] } : '' end # Select no options def select_none @value = [] options.each { |o| o.untick } end # Select all options def select_all @value = [] options.each { |o| o.tick } end # Get a list of all selected options def selected_options @options.find_all { |o| o.selected? } end def value=(values) select_none [values].flatten.each do |value| option = options.find { |o| o.value == value } if option.nil? @value.push(value) else option.select end end end def value value = [] value.push(*@value) value.push(*selected_options.collect { |o| o.value }) value end end
Version data entries
6 entries across 6 versions & 3 rubygems