I am trying to make a popover when clicking a button in java fx, what is the best way to do this, can anyone say.
I already tried
Popup pop = new Popup
but this is not the one i actually need.
I am trying to make a popover when clicking a button in java fx, what is the best way to do this, can anyone say.
I already tried
Popup pop = new Popup
but this is not the one i actually need.
Use PopOver class which is part of ControlsFX: http://controlsfx.bitbucket.org/org/controlsfx/control/PopOver.html
Here is an example usage of it: https://stackoverflow.com/a/21655844/5250273