Hi
I am using gwt 2.4.0. jar. I have a problem with text box
setFocus() in Firefox 15.
I researched about the topic and I have find out a lot of solution
using
Scheduler.get().scheduleDeferred(new Scheduler.ScheduledCommand ()
{
public void execute () {
textbox.setfocus(true);
}
});
DeferredCommand.addCommand(new Command() {
public void execute() {
textbox.setfocus(true);
}
});
I also used timer to schedule the focus(), but that won't
work.
But None of them worked. The setFocus(true) is working fine in IE 9
and IE8 . Please help me ...
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-web-toolkit/-/4R5_kFmMjCkJ.
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.