Hello CaptainCasa!
We are using the Java class "Nodes" like LABELNode to build our dynamic Views. Some values like width we have stored as int. Every time we want to set the value we have to convert from int into String.
Code:
label.setWidth( String.valueOf( inputLabelWidth) )
label.setWidth( "" + inputLabelWidth )
Maybe it is possible to add an additional method to set params like width and height as int/Integer?
Kind regards,
Daniel