Bug? jControlsFX CheckComboBox Enabled method not working

stevel05

Expert
Licensed User
Longtime User
The CheckComboBox Enabled Method does not work.

As a temporary measure we can use Javaobject and the setDisable property on it's parent.

B4X:
Dim JO As JavaObject = CheckComboBox1
JO.RunMethodJO("getParent",Null).RunMethod("setDisable",Array(False))
 
Top