Hello,
i have this script
document.observe('dom:loaded',
function()
{
Ajax.Responders.register(
{
onCreate: function()
{
PopupEngine.Overlay.attach(PopupEngine.Loading.create("loading..."));
},
onComplete: function()
{
if
(!PopupEngine.Overlay.containsPopup())
PopupEngine.Overlay.detach();
}
}
);
}
what it basically does is to put a "loading..." message in a overlay
whenever there's an action happening
the problem is when im using an autocompleter on a field, when the
options show and i navigate between them with the cursor,
the overlay hangs and the function never reaches 'onComplete',
anyone else has the same problem
plz help me
thank you
--
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.