select2_helper.rb 618 Bytes
Newer Older
Johannes Schleifenbaum's avatar
Johannes Schleifenbaum committed
1
# Select2 ajax programmatic helper
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
# It allows you to select value from select2
#
# Params
#   value - real value of selected item
#   opts - options containing css selector
#
# Usage:
#
#   select2(2, from: '#user_ids')
#

module Select2Helper
  def select2(value, options={})
    raise "Must pass a hash containing 'from'" if not options.is_a?(Hash) or not options.has_key?(:from)

    selector = options[:from]

    if options[:multiple]
      page.execute_script("$('#{selector}').select2('val', ['#{value}']);")
    else
      page.execute_script("$('#{selector}').select2('val', '#{value}');")
    end
  end
end