FormsFX
FormsFX copied to clipboard
A framework for easily creating forms for a JavaFX UI.
This is not an actually issue just a question / suggestion. I did not found a way to add a keyListener to field Field.ofStringType(mode.getModelName()) .label("name me") .placeholder("name") now is there...
So this may be similar to one of the open or closed issues,but please hear my case , How does one handle dynamic form inputs with this library, from my...
Hi 👋, Could you, please, guide me how to change visibility for `com.dlsc.formsfx.model.structure.Element` ? For example, I need to change visibility of one of my components. In Swing and JavaFX...
Hi there, Having difficulty setting the width of the Labels.. would be good to have room for a little more text. Have been able to adjust the individual widths of...
Hello. I used the JavaBeanDoubleProperty, JavaBeanStringProperty, etc. in my model, but the form is not updating the fields if changed in the GUI. ``` p = new ObservableGameMainPaneProperties.GameMainPaneProperties(); np =...
It is possible to use FormRenderer to set the spacing between Groups/Sections but I do not see a way to set the spacing between fields. I tried using GroupRenderer however...
My version: ```xml com.dlsc.formsfx formsfx-core 1.3.1 ``` For example: ```java import com.dlsc.formsfx.model.structure.Field; import com.dlsc.formsfx.model.structure.Form; import com.dlsc.formsfx.model.structure.Group; import com.dlsc.formsfx.view.renderer.FormRenderer; import javafx.application.Application; import javafx.beans.property.*; import javafx.collections.FXCollections; import javafx.scene.Scene; import javafx.scene.layout.BorderPane; import javafx.stage.Stage;...
Hello, Thank you for this product. Not sure if this is an issue or question. How to map BigDecimal values, which can be null? The DoubleDataField cannot be null. I'm...
One can set a custom StringConverter on an IntegerField via IntegerField.format(..) The default control for IntegerField, SimpleIntegerControl is a wrapper around an Integer based spinner. Setting a custom StringConverter on...
Currently one can create custom Validators using CustomValidator, where one specifies a predicate and an error message in case the predicate fails. In some cases it would be useful to...