aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/helpers/tags/search_field.rb
blob: 4597cec6fa8d6fa6e7170489e75500d1869a1f63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module ActionView
  module Helpers
    module Tags # :nodoc:
      class SearchField < TextField # :nodoc:
        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
      end
    end
  end
end