Animalwithstix
Results
1
comments of
Animalwithstix
Hey, I will try to explain better, but first here is the code I use: self.table.setSelectionBehavior(QtWidgets.QTableView.SelectRows) self.table.selectionModel().selectionChanged.connect(self.selectionChanged) def selectionChanged(self, selected, deselected): index = (self.table.selectionModel().currentIndex()) print(index) value = index.siblingAtColumn(4).data() object_id =...