Android datetime field collision with keyboard
Android datetime field collision with keyboard
javismiles
Posts: 205Questions: 38Answers: 3
in Editor
Feels like a bug,
- datetime field
- click on create new row button
- go till the datetime field, click on it
- the calendar picker opens
- But... the android keyboard is also triggered
causing a big big mess and its very hard to manipulate the calendar, you close the keyboard, click on calendar and keyboard comes out again, impossible,
you gotta prevent keyboard from coming out
thank you
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Use the
keyInput
option of thedatetime
input type to disallow user input via keyboard. That will also disable the virtual keyboard on mobile platforms.Allan
that sounds like a great idea Allan, but I just added it and the android virtual keyboard keeps popping out, I set it to false like this, see:
$.map(obj.fields, function(obj, index) {
furthermore, I can see on the PC that indeed the key input is disabled, so it works, however the android virtual keyboard keeps triggering out with every action, so it doesnt work and its terribly annoying as the android keyboard comes out every time you touch anything, ooooooops
Yes - that would be annoying!
Try adding:
Allan
Yessss, that made it work well, thank u Allan