Hi All,

I am having a Grid, in which when an user update happend, I am
highlighting the cells which are all changed by the user. Say in
different color background. And that color remains there for 5 seconds
or so. After that I am removing those colors.

This is how I did that,

1) whenever a cell is edited, a Database update is called and get back
the entire row and update all the cells whichever is changed by that
update.
2) Changing the background color(applied a style)
3) timer.schedule(5000);
4) In the timer.run method, I am using that rowIndex value, which the
user has edited and remove the styles(background color highlight)

Now, the problem I face in this scenario is,

When a user update one row, then no issues,
If he/she updates multiple rows in quick successsion, then only the
last rowIndex is passed to timer.run method. Remaining row's color
highlighting is still there.

How can I effectively remove the color of cells in a row, after 5
seconds.

Any help would be appreicated.

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

Reply via email to