13

I want to clear my QTableWidget.

First of all I select a user in a qcombobox after that I click a qpushbutton and I populate it from database records; when I select other user and I click the qpushbutton to add data I try to clear with:

self.tableFriends.clear()

The data disappears but the rows remain.

The code I populate with is:

def getFriends(self):
    id_us = self.cbUser.itemData(self.cbUser.currentIndex()).toPyObject()
    rowIndex = 0
    self.tableFriends.clear()
    for row in self.SELECT_FRIENDS(id_us):
        self.tableFriends.insertRow(rowIndex)
        for column in range(0,3):
            newItem = QtGui.QTableWidgetItem(str(row[column]).decode('utf-8'))
            self.tableFriends.setItem(rowIndex,column,newItem)
        rowIndex = rowIndex + 1
mdurant
  • 27,272
  • 5
  • 45
  • 74
GSandro_Strongs
  • 773
  • 3
  • 11
  • 24

1 Answers1

29

You need to remove the rows individually, e.g:

while (self.tableFriends.rowCount() > 0)
{
    self.tableFriends.removeRow(0);
}

You can also try:

tableFriends.setRowCount(0);

But that may not work, it's been a while since I've used Qt.

Joseph
  • 12,678
  • 19
  • 76
  • 115