Hi In my GWT application, I have a query button which goes through a flex table and picks up the rows that have been checked (there is a checkbox column) and queries the data on the back end and then updates the columns of the flex table with the new data.
The logic for this that I have on the client side is -- for loop that goes through the rows of the table if check box is selected for that particular row it gets the data from the table , sends it to back end by making rpc call returns it and refreshes the table. (in the onsuccess method) and then the loop progresses on to look for the next checked row While the rpc call is being made, it shows a "querying..." to the client and when it is complete it says "done" The problem I am havin is that if say all rows are selected , then all the rows show "querying..." status. Where as, I would like querying to be shown as it is happening, which is one by one. I want to show the user which row is being queried and then to show a "DONE " as it is completed. Which is how it is happenign in the back end as well. Where am I going wrong? How can I implement such behavior? Many thanks
-- 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.
