Hi,

can you help me to do that, please?

I try that:

Qt Code:
  1. protected:
  2. QLineEdit focusOutEvent(QFocusEvent* event) const;
To copy to clipboard, switch view to plain text mode 

Qt Code:
  1. QLineEdit MyWidget::focusOutEvent(QFocusEvent* event) const{
  2. const QObject* ob=QObject::sender();
  3. int i =0;
  4. while (ob!=lineEditList[i] && i<lineEditList.size())
  5. i++;
  6.  
  7. if(LineEdit Validator state == intermediate) //How can i do that?
  8. leList[i]->setEditFocus(true);
  9. }
To copy to clipboard, switch view to plain text mode 

Thanks in advance,

Whitefurrows