Block Virtual keyboard popup for a particular TextField/TextArea
Unsolved
QML and Qt Quick
-
How to block virtual keyboard pop up for a TextField/TextArea? I tried using
inputMethodHints: Qt.ImhNone
and also declared anInputMethod
by settingVisible:false
but nothing is working.If i click on TextEdit/TextArea keyboard pops-up. Is there any way to block the Virtual Keyboard Popup?
-
@Praveen_2017 Hi,
Try this,onFocusChanged: { inputpanel.visible=false; }