The ChoiceBox can't be click in order to select a value when the application is embedded in a web page(Run on Java Plug-In).
It works fine while running on WebStart or local excution.
Have anyone seen this problems before?
Below are my code.
List<DBEnvironment> envList = new ArrayList<DBEnvironment>();
envList.add(new DBEnvironment("name", "value");
ObservableList<DBEnvironment> dbEnv = FXCollections.observableList(envList);
ChoiceBox chBox = new ChoiceBox();
chBox.setItems(dbEnv);