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_table) don't get accessible with
widget.buffer_table
If I use a QPushButton instead it works. How can I get this working. I'd like to fill up the table in Python.
This is the ui-file i'd like to use: http://pastebin.com/6PZFrvmr
EDIT: When I create a new table and try to load it, it seems to work. However, if I put it in a QTabWidget I can't access it.
EDIT2:
widget.findChild(QWidget, "buffer_table")
: Search & find is the trick!