Is it possible to select DISTINCT values using Rails3 JQuery autocomplete gem?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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...
Good luck. |
|||
|
|
|
It is much better and simpler to use scopes. In your model:
In your controller:
This solution allows more complex filtering to be easily applied: model:
controller:
|
|||
|
|
|
I try this:
|
|||
|
|