Hello,
We have an issue with JExplorer 3.6 when the browser is in a JDialog. Form fields sometimes do not get the focus when clicking on them.
Here's an SSCCE:
import javax.swing.JDialog;
import com.teamdev.jexplorer.Browser;
public class Jexplorer {
public static void main(String[] args) {
JDialog dialog = new JDialog();
Browser browser = new Browser();
String url = "http://google.com";
browser.navigate(url);
dialog.getContentPane().add(browser);
dialog.setSize(1100, 800);
dialog.setVisible(true);
}
}
How to reproduce : Click outside the form then click on the search field. Repeat.
Sometimes the field does not get the focus.
This does not happen when the browser is in a JFrame.
We can reproduce the issue with JExplorer 3.5 but not with 3.4.
We are using java 8u162 on Windows 7 with IE11.
Any advice ?
Thanks !
Jérémie