Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to select DISTINCT values using Rails3 JQuery autocomplete gem?

share|improve this question

3 Answers

up vote 3 down vote accepted

Doesn't appear to - but - the 'autocomplete' macro is really just defining an action in your controller. I'd forego using 'autocomplete' in my controller and just implement the action myself...

def autocomplete_for_user_name
   User.select('distinct name')
end

Good luck.

share|improve this answer

It is much better and simpler to use scopes.

In your model:

scope :uniquely_named, group(:name)

In your controller:

autocomplete :user, :name, :scopes => [:uniquely_named]

This solution allows more complex filtering to be easily applied:

model:

scope :uniquely_named, group(:name)
scope :online, where(:online => true)

controller:

autocomplete :user, :name, :scopes => [:uniquely_named, :online]

source

share|improve this answer

I try this:

class UbicationsController < ApplicationController
  autocomplete :ubication, :name

  def autocomplete_ubication_name
    render json: Ubication.select("DISTINCT name as value").where("LOWER(name) like LOWER(?)", "%#{params[:term]}%")
  end
end
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.