iOS Question Strange Issue with TextView

RVP

Active Member
Licensed User
Longtime User
I have a TextView on one of my screens, it doesn't seem that what I am typing into it, is being returned in the Text Value.

B4X:
Sub txtNotes_EndEdit
    txtNotes.ResignFocus
    Log ("txtNotes " & txtNotes.Text)
End Sub

Log result is:

txtNotes

But I typed text into the field. (value = note 1)
lights-png.59920


What could be going on here?
 

Attachments

  • lights.png
    lights.png
    28 KB · Views: 299

RVP

Active Member
Licensed User
Longtime User
Sorry about that, I thought that was what you were asking.

I went thru everything again and discovered that I had used the same name for a textview in two layouts that I was using in the same module. Not sure why it worked before the latest update, but oh well, it is fixed now.
 
Upvote 0
Top