method
options_for_ajax
options_for_ajax(options)
protected
Hide source
# File actionpack/lib/action_view/helpers/prototype_helper.rb, line 681 def options_for_ajax(options) js_options = build_callbacks(options) js_options['asynchronous'] = options[:type] != :synchronous js_options['method'] = method_option_to_s(options[:method]) if options[:method] js_options['insertion'] = "Insertion.#{options[:position].to_s.camelize}" if options[:position] js_options['evalScripts'] = options[:script].nil? || options[:script] if options[:form] js_options['parameters'] = 'Form.serialize(this)' elsif options[:submit] js_options['parameters'] = "Form.serialize('#{options[:submit]}')" elsif options[:with] js_options['parameters'] = options[:with] end options_for_javascript(js_options) end