I was upset that the physical keyboard does not work for both N97 mini and N97. I don't have conditions to test on other device and I have to publish application with the uncertainty !
The following is my code.
editPassword
->setEchoMode
(QLineEdit::Password);
editPassword->setInputMethodHints(Qt::ImhHiddenText| Qt::ImhNoPredictiveText|Qt::ImhNoAutoUppercase);
editPassword = new QLineEdit(this);
editPassword->setEchoMode(QLineEdit::Password);
editPassword->setInputMethodHints(Qt::ImhHiddenText| Qt::ImhNoPredictiveText|Qt::ImhNoAutoUppercase);
To copy to clipboard, switch view to plain text mode
If i remove the second line then my edit field don't have preditivce text. But if I add the second line, my password field is completely useless. The user has to enter password with predictive text !!!!
My customer cannot use the application if he cannot login. My applicaiton is completely useless 
Any idea how to implement a password field in Qt? This is really a very basic problem, i think !
Thank you in advance
Hai
Bookmarks