Hi Walter, if you return an empty UL that should turn off the indicator just fine. The problem with just returning nothing (or a single space) is that it breaks during the Ajax.Autocompleter#updateChoices method, due to the following line:
Element.cleanWhitespace(this.update.down()); This is because this.update.down() returns null and Element#cleanWhitespace blows up when you pass it a null. See this reference document for more info: http://github.com/madrobby/scriptaculous/wikis/ajax-autocompleter -justin --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" 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/prototype-scriptaculous?hl=en -~----------~----~----~----~------~----~------~--~---
