Answer the question
In order to leave comments, you need to log in
How to make an infinite table in python?
Using table view is it possible to make the table scroll down infinitely?
Answer the question
In order to leave comments, you need to log in
You can add a line down.
rowPosition = self.table.rowCount()
table.insertRow(rowPosition)
table.setItem(rowPosition , 0, QtGui.QTableWidgetItem("text1"))
table.setItem(rowPosition , 1, QtGui.QTableWidgetItem("text2"))
table.setItem(rowPosition , 2, QtGui.QTableWidgetItem("text3"))
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question