I have one link on click of that link one can edit the name of that link in the text box.
After editing save and close options are there. after saving this the focus goes out from the link i need that focus must be stay there on the link.
I am using
Scheduler.get().scheduleDeferred(new ScheduledCommand() {
public void execute () {
link.setFocus(true);
}
});
for the link but it will focus for a second only not permanently to that link. Looking for solution.
Thanks..!!