johndb Active Member Licensed User Longtime User Jan 26, 2019 #1 It would appear that the Enabled property has no effect. The ComboBox is still active when setting the property Enabled = False. The way I'm setting property is as follows: B4X: cbCombo.mBase.Enabled = False What am I doing wrong or is this a bug? Thanks for your help.
It would appear that the Enabled property has no effect. The ComboBox is still active when setting the property Enabled = False. The way I'm setting property is as follows: B4X: cbCombo.mBase.Enabled = False What am I doing wrong or is this a bug? Thanks for your help.
Erel B4X founder Staff member Licensed User Longtime User Jan 27, 2019 #2 A disabled state was not implemented yet. Disabling the base panel will not do anything. You should disable the native ComboBox. In B4A: B4X: cbCombo.mBase.GetView(0).Enabled = False Upvote 0
A disabled state was not implemented yet. Disabling the base panel will not do anything. You should disable the native ComboBox. In B4A: B4X: cbCombo.mBase.GetView(0).Enabled = False
johndb Active Member Licensed User Longtime User Jan 27, 2019 #3 Erel said: A disabled state was not implemented yet. Disabling the base panel will not do anything. You should disable the native ComboBox. In B4A: B4X: cbCombo.mBase.GetView(0).Enabled = False Click to expand... Thank you @Erel. That worked. Upvote 0
Erel said: A disabled state was not implemented yet. Disabling the base panel will not do anything. You should disable the native ComboBox. In B4A: B4X: cbCombo.mBase.GetView(0).Enabled = False Click to expand... Thank you @Erel. That worked.