debian-mirror-gitlab/spec/support/select2_helper.rb

26 lines
620 B
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
# Select2 ajax programmatic helper
# 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]
2015-04-26 12:48:37 +05:30
execute_script("$('#{selector}').select2('val', ['#{value}'], true);")
2014-09-02 18:07:02 +05:30
else
2015-04-26 12:48:37 +05:30
execute_script("$('#{selector}').select2('val', '#{value}', true);")
2014-09-02 18:07:02 +05:30
end
end
end