Hi Team,
I'm trying to disable the user's ability to enter text in the B4XFloatTextField1
I've tried various options like setting Enabled or Visible to False, added panel over B4XFloatTextField1, but the keyboard still appears when the user taps on the B4XFloatTextField1
How can I prevent this?
thanks in advance
I'm trying to disable the user's ability to enter text in the B4XFloatTextField1
I've tried various options like setting Enabled or Visible to False, added panel over B4XFloatTextField1, but the keyboard still appears when the user taps on the B4XFloatTextField1
How can I prevent this?
B4X:
Private Sub rdBtn2_CheckedChange(Checked As Boolean)
B4XFloatTextField1.TextField.Enabled = False
B4XFloatTextField1.TextField.Visible = False
B4XFloatTextField1.mBase.Visible = False
End Sub
thanks in advance