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!
Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.
Hi
I am using GI 12.1.0.2.
GRID_HOME=/u01/app/12.1.0.2/grid
but no log in $GRID_HOME/log/hostname/crsd or cssd or evmd
I have only one alert.log in /u01/app/grid/diag/crs/hostname/crs/trace
How is it possible ?
Thanks
public class TestApp extends Application { public static void main(String[] args) throws Exception { launch(args); } public void start(final Stage stage) throws Exception { final SplitPane rootPane = new SplitPane(); rootPane.setOrientation(Orientation.VERTICAL); final FlowPane dockedArea = new FlowPane(); dockedArea.getChildren().add(new Label("Some docked content")); FlowPane centerArea = new FlowPane(); Button undockButton = new Button("Undock"); undockButton.setOnAction(new EventHandler<ActionEvent>() { public void handle(ActionEvent actionEvent) { rootPane.getItems().remove(dockedArea); Dialog dialog = new Dialog(); dialog.setOnHidden(new EventHandler<WindowEvent>() { public void handle(WindowEvent windowEvent) { rootPane.getItems().add(dockedArea); } }); dialog.setContent(dockedArea); dialog.show(stage); } }); centerArea.getChildren().add(undockButton); rootPane.getItems().addAll(centerArea, dockedArea); Scene scene = new Scene(rootPane, 300, 300); stage.setScene(scene); stage.show(); } //------------------------------------------------------------------------- private class Dialog extends Popup { private BorderPane root; private Dialog() { root = new BorderPane(); root.setPrefWidth(200); root.setPrefHeight(200); root.setStyle("-fx-border-width: 1; -fx-border-color: gray"); root.setTop(buildTitleBar()); getContent().add(root); } public void setContent(Node content) { root.setCenter(content); } private Node buildTitleBar() { BorderPane pane = new BorderPane(); pane.setStyle("-fx-background-color: #0000aa; -fx-text-fill: white; -fx-padding: 5"); pane.setOnMouseDragged(new EventHandler<MouseEvent>() { public void handle(MouseEvent event) { // not sure why getX and getY don't work // double x = getX() + event.getX(); // double y = getY() + event.getY(); double x = event.getScreenX(); double y = event.getScreenY(); setX(x); setY(y); } }); Label title = new Label("My Dialog"); pane.setLeft(title); Button closeButton = new Button("X"); closeButton.setOnAction(new EventHandler<ActionEvent>() { public void handle(ActionEvent actionEvent) { hide(); } }); pane.setRight(closeButton); return pane; } } }