Qtdesigner & Pyside: Qtablewidget Don't Get Accessible
I made a form in QtDesigner. This form gets loaded from PySide with help of the function widget = loader.load(file, parent) However, the QTableWidget (with objectNname buffer_tabl
Solution 1:
You could try to see if the table is there with: widget.findChild(QWidget, "buffer_table")
(even from the parent, since it is a recursive search).
Post a Comment for "Qtdesigner & Pyside: Qtablewidget Don't Get Accessible"