bernat / best_in_place

A RESTful unobtrusive jQuery Inplace-Editor and a helper as a Rails Gem
http://blog.bernatfarrero.com/in-place-editing-with-javascript-jquery-and-rails-3/
1.2k stars 572 forks source link

Select dropdown disappears in Firefox when click on arrow - Rails 4 #488

Open georgiewooler opened 9 years ago

georgiewooler commented 9 years ago

In Firefox when you click on the field to be edited a dropdown with up/down arrows on the right appears but when you click on the arrows the drop down disappears...

In Chrome when you click on the editable field a full list appears - when you select an option there is a brief second where you see the list as a dropdown with up/down arrows on the right

<%= best_in_place @problem, :state, :as => :select, :collection => State.select_options.map { |s| [ s[1], s[0] ]} %>

Any suggestions?