-
Bug
-
Resolution: Not an Issue
-
P4
-
None
-
7u6
-
Windows 7 64 bit
I have this situation:
http://i.imgur.com/xqceqPH.png
When I click in the "Option 1", a Pane will be placed inside the frameBox.
To set a Pane inside the frame box, I wrote:
public void setPanel(Pane pane) {
frameBox.getChildren().add(pane);
}
What will take us to this situation:
http://i.imgur.com/cDYBxEF.png
I also wrote an event to the framebox for when it receives a mouse click:
frameBox.setOnMouseClicked(new EventHandler<MouseEvent>() {
@Override
public void handle(MouseEvent event) {
System.out.println("Clicked in the frame box!");
}
});
Expected result: When I click in any part of the frameBox, it will print the message.
Real result: When I click in any of the buttons, the mouse click event is not triggered. Any other part of the pane works. Just the buttons don't work as expected.
I've tested with some other controls like a Text Area and happened the same situation.
I'm doing something wrong or this is really a bug?
http://i.imgur.com/xqceqPH.png
When I click in the "Option 1", a Pane will be placed inside the frameBox.
To set a Pane inside the frame box, I wrote:
public void setPanel(Pane pane) {
frameBox.getChildren().add(pane);
}
What will take us to this situation:
http://i.imgur.com/cDYBxEF.png
I also wrote an event to the framebox for when it receives a mouse click:
frameBox.setOnMouseClicked(new EventHandler<MouseEvent>() {
@Override
public void handle(MouseEvent event) {
System.out.println("Clicked in the frame box!");
}
});
Expected result: When I click in any part of the frameBox, it will print the message.
Real result: When I click in any of the buttons, the mouse click event is not triggered. Any other part of the pane works. Just the buttons don't work as expected.
I've tested with some other controls like a Text Area and happened the same situation.
I'm doing something wrong or this is really a bug?