Sure... > >4/ At the last interrupt have the object commit suicide and remove > >itself Feedback will wake up every, say, 250ms.. You want to keep a highlight visible for say 5 seconds so that's 20 wake ups. Count them. On the 20th you're going to set the background back to it's original color - probably white. When you've done that remove the association between the cell/row and the Feedback object and don't set the timer again. There's no more references to that Feedback object so it will be forgotten about and garbage collected.
> >5/ On an edit clear any existing feedback objects and kill them. > >Instantiate a new Feedback object and forget about it When you start editing a cell check if there are any associated Feedback objects - there will be either 0 or 1. If you find one then remove it and set a flag in it to tell it not to change the background color of the cell and that's it. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" 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/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
