Like I said in my first post, delay invoking your function for the
same amount of time as the effect. There's a few different ways to
achieve this, but the goal is don't do any row counting/alteration/etc
until after the effect is complete.

row.fade({duration:0.5});
setTimeout(function(){
  row.remove();
  setRowFeatures();
}, 500);

-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
-~----------~----~----~----~------~----~------~--~---

Reply via email to