I will give you a short example:
Dim xUpDown AsJFXtrasNumberUpDown
xUpDown.Initialize("xUpDown")
xUpDown.MinValue = 1
xUpDown.MaxValue = 6
xUpDown.Format = "0.00"
xUpDown.Style = "-fx-font-size: 14"
grdInput.Items.Add(ArrayAsObject(WrapNFeld(xUpDown)))
.
.
.
Sub WrapNFeld(txt AsJFXtrasNumberUpDown) AsPane
Dim pn1 AsAnchorPane
pn1.Initialize("")
pn1.AddNode(txt, 0, 0, -1, -1)
pn1.FillHorizontally(txt, 0, 0)
Return pn1
End Sub
As you can see I don't use
xUpDown.number = any number
thus the control is empty (NULL).
Now I fill the control with a number.
If necessary the control should be emptied programatically again.
How can I do this? At the moment I remove the control an intitialize it for new.
Thanks
Werner