Hi! I’m using Pat Shaughnessy’s auto_complete fork, working with nested
forms. It’s working very well, producing the right auto complete query
and filling up the auto-complete div (as I can see from firebug). Just,
the div has a style=“display: none;” property always set that’s
preventing it from showing up!
Here is my code:
app/views/letters/_form.html.erb
<% form_for(@letter, :html => {:multipart => true}) do |letter_form| %>
[…]
app/views/letters/_entity.html.erb
This is the generated HTML code after I type a few letters:
Any suggestion on why the div is not showing up? I tried searching on
the net but could not find anything useful. Thanks!