Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    SQLITE DATETIME field and QItemDelegate

    General and Desktop
    1
    1
    681
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • M
      migcr last edited by

      Hello,

      It's possible to use a QItemDelegate subclass in a view (model/view classes) to allow editing a DATETIME field
      with a QDateTimeEdit?

      My code looks like this:

      @
      QItemEditorFactory *editorFactory = new QItemEditorFactory();
      QItemEditorCreatorBase *creator = new QStandardItemEditorCreator<QDateTimeEdit>();
      editorFactory->registerEditor(QVariant::DateTime, creator);

      QStyledItemDelegate* itemDelegate = new QStyledItemDelegate();
      itemDelegate->setItemEditorFactory(editorFactory);
      @

      As Qt converts the database field in a QVariant::int or a QVariant::String, it's never used the QDateTimeEdit delegate.

      Is there any possibility to force Qt to convert the SQLITE Field in a QVariant::DateTime?

      Thanks in advance,
      Miguel

      1 Reply Last reply Reply Quote 0
      • First post
        Last post