Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-33191

Virtual keyboard does not open in WinCE7 in QtQuick2 applications

XMLWordPrintable

      Virtual keyboard should open automatically when textedit gains focus. This does not happen. Qt.inputMethod.show() or textInput.forceActiveFocus() does not help. Attached an example that produces this issue.

      import QtQuick 2.0
      
      Item {
          width: 300; height: 200
          TextEdit {
              id: textInput
              anchors { bottom: parent.bottom; horizontalCenter: parent.horizontalCenter; bottomMargin: 20 }
              text: "Click me, I am TextEdit"
              MouseArea {
                  anchors { fill: parent; }
                  onClicked: {
                      textInput.forceActiveFocus();
                      Qt.inputMethod.show(); }
              }
          }
      }
      

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

            bjoern.breitmeyer Björn Breitmeyer
            qtcomsupport Qt Support
            Votes:
            1 Vote for this issue
            Watchers:
            5 Start watching this issue

              Created:
              Updated:
              Resolved:

                There are no open Gerrit changes