Good morning guys, can anyone tell me how to implement FieldSet in JavaFX. There is no such object in the Scene Builder.
Good morning guys, can anyone tell me how to implement FieldSet in JavaFX. There is no such object in the Scene Builder.
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.