I have a list of dictionaries:
globalParams = [{\'attr\':\'enabled\',\'ctrl\':\'checkBoxEnabled\',\'type\':\'checkBox\'}, {\'attr\':\'colorMo
You can use QObject::findChild method. In pyqt it should be written like this:
QObject::findChild
checkbox = self.findChild(QtGui.QCheckBox, "checkBoxEnabled")
self should be a parent widget of the checkbox.
self