Skip to content
Advertisement

Why does my QStyleItemDelegate pop up in a new window instead of in my TableView?

I’m trying to create a pretty simple app with Pyside2 that displays some data in a table that the user can edit. I want the cells of the table to autocomplete based on other values in the table, so I implemented a custom delegate following this tutorial. It was pretty straightforward and the delegate works as expected except for some reason the delegate pops up in a new window instead of being attached to the cell in the table, illustrated by this example (the custom delegate is defined at the end):

JavaScript

Image showing table behavior when a cell is active

From everything I’ve read, the updateEditorGeometry method on the custom delegate should anchor it to the active cell, but something clearly isn’t working as expected in my case. And I am still learning Qt so I can’t claim to understand what it is doing. Is there anyone out there who might be able to explain what is going on here? Much appreciated.

  • OS: Ubuntu 20.04
  • Python 3.8.5
  • PySide2 5.15.0
  • Qt 5.12.9

Advertisement

Answer

Any widget that does not have a parent will be a window and since the QLineEdit has no parent then you observe the behavior that the OP indicates, for that reason the createEditor method has “parent” as an argument.

On the other hand, it is better to create a custom QLineEdit that easily implements the handling of adding suggestions to the QCompleter through a model.

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