I iCAB Well-Known Member Licensed User Longtime User Dec 9, 2017 #1 Hi All I had a working GUI that I haven't touched in a while. The last time I used the code was with B4I ver 2.x and most likely iOS 8. I updated to B4I 4.4 (unfortunately I didn't try the code before updating) For whatever reason, when the user clicks a TextField, the keyboard is no longer showing automatically. I know that this working before. if I use .RequestFocus in the click event then the keyboard shows Did anyone face a similar issue? Thank you Last edited: Dec 9, 2017
Hi All I had a working GUI that I haven't touched in a while. The last time I used the code was with B4I ver 2.x and most likely iOS 8. I updated to B4I 4.4 (unfortunately I didn't try the code before updating) For whatever reason, when the user clicks a TextField, the keyboard is no longer showing automatically. I know that this working before. if I use .RequestFocus in the click event then the keyboard shows Did anyone face a similar issue? Thank you
Erel B4X founder Staff member Licensed User Longtime User Dec 10, 2017 #2 You don't need to do anything special for the keyboard to show. Can you reproduce it in a small project? Upvote 0
You don't need to do anything special for the keyboard to show. Can you reproduce it in a small project?
I iCAB Well-Known Member Licensed User Longtime User Dec 10, 2017 #3 Erel said: You don't need to do anything special for the keyboard to show. Can you reproduce it in a small project? Click to expand... Please see attached 1. In the attached project if you comment out, txtb1.RequestFocus then the keyboard will not show on click 2. if you remove txtb1_Click sub, the keyboard will show Thank you Attachments AddViewTest.zip 2.4 KB · Views: 213 Upvote 0
Erel said: You don't need to do anything special for the keyboard to show. Can you reproduce it in a small project? Click to expand... Please see attached 1. In the attached project if you comment out, txtb1.RequestFocus then the keyboard will not show on click 2. if you remove txtb1_Click sub, the keyboard will show Thank you
Erel B4X founder Staff member Licensed User Longtime User Dec 11, 2017 #4 You shouldn't handle the Click event. The Click event appears on all views because they are all subclasses of the same class. You should handle BeginEdit instead. Upvote 0
You shouldn't handle the Click event. The Click event appears on all views because they are all subclasses of the same class. You should handle BeginEdit instead.