I have an autocomplete field generated with $ajax->autoComplete(...) Everything works fine, the autocomplete controller method is executed, the database quest is executed and the autocomplete view is returned to the page - however the <ul> that that autocomplete view generates has display:none so it is invisible. This style is set inline on the div (i am not setting it via my own css).
<div id="ArtistTitle_autoComplete" class="auto_complete" style="display: none;"> Below is the generated HTML after a call to autoComplete() <input id="ArtistTitle" type="text" value="" autocomplete="off" name="data[Artist][title]"/> <div id="ArtistTitle_autoComplete" class="auto_complete" style="display: none;"> <ul> <li>Mr. T Experience, The</li> <li>Marit Bergman</li> <li>Mojave 3</li> <li>Monster Movie</li> <li>My Bloody Valentine</li> <li>Magnetic Fields, The</li> <li>Mates of State</li> </ul> </div> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
