Hi,<br><br>I have a QListWidget that I have configured to do what I need (Nice and Easy). I add QListWidgetItems to it and specify with flags that these items can accept drop events (QtCore.Qt.ItemIsDropEnabled).<br>I overwrite the drop event and make sure I let the QListWidget handle the details ...<br>
<br>    def dropEvent(self, event):<br><br>        QtGui.QListWidget.dropEvent(self, event)<br>        # How can I get a reference to the target item from here?<br><br>The problem is that I need to know which row the item that is being dropped onto is in (target item). QListWidgetItem has no events for me to overwrite so subclassing it did not help me. Any ideas?<br>
<br>Thanks<br>