Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi
I managed to create a target custom page with a combobox (ui)
How I can add Items to the combobox? I have tryed widget.comboBoxName.addItems("test123")
thx!
Hi,
The addItems method accepts a QList<QString> parameter.
Use addItem to add just one QString
addItems was a spelling mistake
i have
widget.installComboBox.addItem("test123");
and the ui
<widget class="QComboBox" name="installComboBox">
and doesn't work