Skip to content
Advertisement

How to properly submit data when using QDataWidgetMapper?

I’m using a custom model subclassed from QAbstractTableModel, my data is a list of dataclasses.

I’ve set up a simple GUI with a QListView and two QLineEdits, like so:

Simple GUI with a listview and two line-edits

JavaScript

I’m trying to achieve that whenever I change the contents of the first QLineEdit, the list-view is updated as well.
From reading the documentation for QDataWidgetMapper I know that the model should be updated whenever the current widget loses focus, but it isn’t. No matter what I enter in the edit-fields, the model’s setData-method is never called.
Even if I edit the item in the list-view, the line-edit’s contents don’t change.

I discovered that when I connect the text-field’s textChanged-signal to the mapper’s submit-method, everything works, but the dataChanged-method is called three times, and I don’t understand why.
Even stranger, now the text-field’s contents are updated whenever I edit the item in the list-view, although connecting to the textChanged signal is (at least I think so) only a one-way connection.

What am I doing wrong? I’m clearly missing something, as QDataWidgetMapper‘s SubmitPolicy would be completely useless if this was the right way to do it.

Advertisement

Answer

Your mapper gets deleted as soon as __init__ returns, because there’s no persistent reference for it. This is a common mistake for Qt objects in PyQt, usually caused by the fact that widgets added to a parent or layout become persistent even if there’s no python reference, but the fact is that adding a widget to a layout actually creates a persistent reference (the parent widget takes “ownership”, in Qt terms), thus preventing garbage collection.

Just make it an instance member or add the parent argument:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement