Sha256: 88a2d5ae5e86197f56fe77206768882e0d2bc8472419bdbd5cb7a3dc5bda413e

Contents?: true

Size: 1.53 KB

Versions: 1

Compression:

Stored size: 1.53 KB

Contents

module ActionController
  module AutoComplete #:nodoc:
    def self.append_features(base) #:nodoc:
      super
      base.extend(ClassMethods)
    end

    # Example:
    #
    #   # Controller
    #   class BlogController < ApplicationController
    #     auto_complete_for :post, :title
    #   end
    #
    #   # View
    #   <%= text_field_with_auto_complete :post, title %>
    #
    # By default, auto_complete_for limits the results to 10 entries,
    # and sorts by the given field.
    # 
    # auto_complete_for takes a third parameter, an options hash to
    # the find method used to search for the records:
    #
    #   auto_complete_for :post, :title, :limit => 15, :order => 'created_at DESC'
    #
    # For help on defining text input fields with autocompletion, 
    # see ActionView::Helpers::JavascriptHelper.
    #
    # For more examples, see script.aculo.us:
    # * http://script.aculo.us/demos/ajax/autocompleter
    # * http://script.aculo.us/demos/ajax/autocompleter_customized
    module ClassMethods
      def auto_complete_for(object, method, options = {})
        define_method("auto_complete_for_#{object}_#{method}") do
          find_options = { 
            :conditions => [ "LOWER(#{method}) LIKE ?", '%' + params[object][method] + '%' ], 
            :order => "#{method} ASC",
            :limit => 10 }.merge!(options)
            
          @items = object.to_s.camelize.constantize.find(:all, find_options)

          render :inline => "<%= auto_complete_result @items, '#{method}' %>"
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
actionpack-1.9.0 lib/action_controller/auto_complete.rb