Hallo!!!

Already Googled around but no solution found... How should I modify my QDateEdit so that as soon as I get in, the QCalendarWidget gets shown???

I tried the following, but it doesn't work...
Qt Code:
  1. void MyDateEdit::focusInEvent(QFocusEvent * e)
  2. {
  3. QDateTimeEdit::focusInEvent(e);
  4. calendarWidget()->show();
  5. }
To copy to clipboard, switch view to plain text mode