-
Bug
-
Resolution: Done
-
Not Evaluated
-
None
-
4.7.4, 4.8.0
-
Symbian Belle using both 4.7.4 and 4.8.0.
Software input panel cannot be opened via onCompleted. Code below should open input panel on startup. Opening it via some later event like a touch event works as it should. This should be fixed or documentation updated.
main.qml
import QtQuick 1.1 Rectangle { width: 360 height: 360 TextInput { id: input text: qsTr("Hello World") anchors.centerIn: parent Component.onCompleted: { input.forceActiveFocus(); input.openSoftwareInputPanel(); } } }
Originally reported in https://bugreports.qt.nokia.com/browse/QTCOMPONENTS-1162