views:

40

answers:

1

Hello. I have a problem on my application.

I have collection select code

<% baskets.each do |f| %> 
    <%= f.select :link, @books.collect{|x| [x.title, x.id]}.unshift(['Please select','']) %>
<% end %>

How do I make the select option editable like a text field so that I can copy and paste the link to choose from the book collections?

I've never tried this. Do you have any suggestion?

Thanks for your help :)

A: 

Instead of using a select field you could use a text field with auto complete.

mikej
but they won't used auto complete, i have used this for the tag
Kuya
What do you mean they won't use auto complete? Do you want a drop down list in which the value can also be edited?
mikej
yes i do. I mean that
Kuya