I have a simple Dialog displaying the standard Rich Text Editor (HtmlEditor) in a FitLayout. When I open the dialog and focus the editor, it seems that for a very short period of time, the current browser window loses focus, one of the background browser windows gaines focus, comes to front and goes to back immediately - resulting in an ugly flickering effect.

Does someone have a clue why this happens and how this could be fixed? Thanks a lot in advance.

Here is the sample code (note that you need to have at least 2 browser windows opened to be able to reproduce this issue):

import com.extjs.gxt.ui.client.widget.Dialog;
import com.extjs.gxt.ui.client.widget.form.HtmlEditor;
import com.extjs.gxt.ui.client.widget.layout.FitData;
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
import com.google.gwt.user.client.Element;


public class SampleDialog extends Dialog {
    public SampleDialog() {
        setButtons(Dialog.CLOSE);
    }

    @Override
    protected void onRender(Element parent, int pos) {
        super.closeText = "Schließen";
        super.onRender(parent, pos);
        setHeading("My RTE Dialog");  
        setWidth(700);  
        setHeight(520);  
        setHideOnButtonClick(true);     
        setLayout(new FitLayout());

        HtmlEditor editor = new HtmlEditor();
        add(editor, new FitData(10));
    }
}
link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.