Relative Content

Tag Archive for javafx

MVC: How to Implement Linked Views?

I’m developing a java application to visualize time series. I need (at least) three linked views, meaning that interaction with one of them updates the others.

MVC: How to Implement Linked Views?

I’m developing a java application to visualize time series. I need (at least) three linked views, meaning that interaction with one of them updates the others.

MVC: How to Implement Linked Views?

I’m developing a java application to visualize time series. I need (at least) three linked views, meaning that interaction with one of them updates the others.

MVC: How to Implement Linked Views?

I’m developing a java application to visualize time series. I need (at least) three linked views, meaning that interaction with one of them updates the others.

JavaFX with or without Rich Client Platform

I’m starting to delve into JavaFX and have heard that one of the cons of java fx is that there isn’t a mature rich client platform or application framework ala eclipse rcp or netbeats platform for it.

How to make two stretchable ComboBox have same width in JavaFX?

I have two Buttons and two ComboBoxes . The width of buttons is unknown as the text depends on the language. ComboBoxes must stretch maximum, but they must always have same width. I mean that comboBox1.getWidth() must be equal to comboBox2.getWidth().

Center a component in another component in JavaFX

I want to dynamically center a small AnchorPane (containing the image) into a larger AnchorPane as shown below. For now, the small AnchorPane contains only an image but more controls will be added later. Statically, I am doing this by setting the top/botton/right/left Anchors. But At runtime, I want the small AnchorPane to remain vertically and horizontally centered even if the parent size changes.