On Thursday, March 23, 2017 at 3:54:56 PM UTC+1, pH4Lk0n wrote: > > This problem still exists in GWT 2.8.0. > > I've got similar problem. I just want to select record that is clicked > elsewhere but user needs to move mouse to see this effect. > It's unusable right now in this scenario because it seems application work > sluggish. > > Is there any workaround this problem?? >
Cell-widget changes are scheduled using Scheduler#scheduleFinally. I'd say you're probably calling GWT code from a JSNI and you didn't wrap your callback function into $entry(). $entry() ensures scheduleEntry and scheduleFinally work as expected, and also routes exceptions to the GWT.UncaughtExceptionHandler (if there's one). -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/d/optout.
