Details
-
Bug
-
Resolution: Done
-
P2: Important
-
5.1.1
-
None
-
Ubuntu 13.04
-
5dc805c86077ee9cd10af530f802fdda879cfb6a
Description
Hi,
Am trying to verify the TextArea control in QtQuick Controls 1.0
released in QtQuick 2.1.
Here I wanted to receive all Keyboard (Key press & release) events in my TextArea.
FYI, I have attached the QML file, please find the same.
Actual:
Here it should receive all keyboard events and
log the same, but in this case it receives only Left arrow and right arrow
keys only when the cursor is at the beginning and at the end of text document respectively.
Rest all cases, no key events, (Aplha, Numeric etc) were ever received.
TextArea {
Keys.onPressed:
Keys.onReleased:
{ console.log(event.text) }}
Expected:
TextArea should receive all key events all the time.
Attachments
Issue Links
- replaces
-
QTBUG-34101 QtQuickControls: Keys attached property not working in TextField
-
- Closed
-
-
QTBUG-35763 iOS: Cannot get any signal when user press "Done" on virtual keyboard
-
- Closed
-
- resulted in
-
QTBUG-39102 TextArea: tabChangesFocus does not work
-
- Open
-