Shadi Shaheen

Results 17 comments of Shadi Shaheen

Hello, Well you are missing some opens and exports, you can check my other repo [JFXBase](https://github.com/sshahine/JFXBase/blob/master/build.gradle) for the required exports. Regards,

So github is only used to host the source code of libraries, to get the jar build of a certain library you need to either install it from Maven/Gradle centrals...

make sure you are using compatible versions of SceneBuilder / JFoenix / Java

Hello, can you provide a SSCCE demonstrating the issue? or a simple gif?

@gzep can you provide a SSCCE for this issue?

@nemphys thank you pointing out the issue 👍

Hi, there is a workaround for this. try the following code snippet ``` JFXColorPicker picker = new JFXColorPicker(); picker.setManaged(false); JFXButton btn = new JFXButton("Show"); btn.setOnAction((action) -> picker.show()); root.getChildren().addAll(picker, btn); ```

Hi, Can you provide a SSCCE demonstrating the issue?

Well, it's because JFoenix is using reflection to access some private methods/fields of the original JavaFX controls. To fix this issue, some changes need to be done from JavaFX side...

I doubt that would happen anytime soon, cause there are so many libraries dependent on java reflection. But in any case, I'll create a ticket for JavaFX to open up...