How can I customize the ExtendedDescription view for DefaultOption?

46 Views Asked by At

If I set the ExtendedDescription text for a DefaultOption clicking the option opens a view where the text is displayed in an HBox and is centered there. I would like to customize the HBox area where the text is: align the text not only to center, color the text or bold/italicise parts of it, add a small image maybe...

I didn't see any API to access anything relating to customization except for maybe OptionEditor but when I try to call editorFactoryProperty() the optional is always empty. Am I supposed to create one myself and set it? What is the process for that?

1

There are 1 best solutions below

3
On BEST ANSWER

So far there is no API for the Extended View.

If you check it with ScenicView, you can see that the view nodes have custom style classes applied though, so you will be able to use lookups on runtime to get a hold of the BorderPane (id: extended-pane), the HBox at the top (id: extended-top), the one at the center (id: extended-center), and its Text child (styleClass: extended-text).

Extended View

Something like this should work:

viewProperty().addListener((obs, ov, nv) -> {
        if (nv != null && nv.getName().startsWith("Extended_View_Gender")) {
            BorderPane pane = (BorderPane) nv.lookup(".extended-pane");
            if (pane != null) {
                Text text = (Text) pane.lookup(".extended-text");
                text.setStyle("-fx-fill: red");
            }
        }
    });