I'm using this java SimpleSwingBrowser example to display a html dropdown box like this with the javaFx webEngine:
<html><body><select>
<option value="1">value 1</option>
<option value="2">value 2</option>
<option value="3">value 3</option>
</select></body></html>
You can find a complete example here.
When I run this example, I'm not able to choose a value from the dropdown menu with the mouse (it works if I use the keyboard).
It appears that the mouse events do not make it through to the jfx scene. Is it possible to display a dropdown menu that reacts in the usual way to mouse events?