Skip to Main Content

Java SE (Java Platform, Standard Edition)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Can't click ChoiceBox when embedded application in a web page

870514Aug 5 2011
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);

Comments

1037648

Bump

1 - 1
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Sep 2 2011
Added on Aug 5 2011
0 comments
80 views