Details
-
Bug
-
Resolution: Out of scope
-
P2: Important
-
None
-
5.5.1
-
None
-
iOS 9.2 (13C75)
Description
import QtQuick 2.5 import QtQuick.Window 2.2 import QtQuick.Controls 1.4 Window { visible: true Column { TextField { id: first font.pointSize: 30 focus: true onEditingFinished: second.focus = true } TextField { id: second font.pointSize: 30 onEditingFinished: first.focus = true } } }
This works on Android devices.
On iOS devices, when tapping "Done" second field gets the focus. However, keyboard doesn't pop up (inputMethod).
Tapping on the first field again, first field gets the focus, however the second field still works like it's also focused.
I have attached a screenshot - on iOS you can see both fields have active cursor. On Android devices this works as expected.