Flowdock
method

render

Importance_0
v4.2.9 - Show latest stable - 0 notes - Class: SearchField
render() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionview/lib/action_view/helpers/tags/search_field.rb, line 5
        def render
          super do |options|
            if options["autosave"]
              if options["autosave"] == true
                options["autosave"] = request.host.split(".").reverse.join(".")
              end
              options["results"] ||= 10
            end

            if options["onsearch"]
              options["incremental"] = true unless options.has_key?("incremental")
            end
          end
        end
Register or log in to add new notes.