Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. SQLITE DATETIME field and QItemDelegate
Forum Updated to NodeBB v4.3 + New Features

SQLITE DATETIME field and QItemDelegate

Scheduled Pinned Locked Moved General and Desktop
1 Posts 1 Posters 736 Views 1 Watching
  • 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 Offline
    M Offline
    migcr
    wrote on last edited by
    #1

    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
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved