FieldSet in JavaFX

0

Good morning guys, can anyone tell me how to implement FieldSet in JavaFX. There is no such object in the Scene Builder.

    
asked by anonymous 22.06.2017 / 14:29

1 answer

0

This component does not exist in JavaFX or the primary UI Controls plugin ( ControlsFX ), so it is not present in the SceneBuilder . However, I believe you can achieve similar functionality by using GridPane .

This layout groups the content into rows and columns, which allows you to place labels in one column and fields in another, for example. This is what I use when I want to make a form (besides being responsive).

You can find the list of all components here >. Hope it helps.

    
22.06.2017 / 16:14