Update combobox data from model
-
I have a categories QComboBox which is linked to a QSqlTableModel. Also I have a second window to manage categories (add/remove). How to update/refresh/reload the combobox whenever a category is added/removed?
My code:
int catIndex = model2->fieldIndex("category"); model2->setRelation(catIndex, QSqlRelation("categories", "id", "name")); QSqlTableModel *catModel = model2->relationModel(catIndex); ui->comboBox_2->setModel(catModel); ui->comboBox_2->setModelColumn(catModel->fieldIndex("name")); mapper->addMapping(ui->comboBox_2, catIndex);
-
I have a categories QComboBox which is linked to a QSqlTableModel. Also I have a second window to manage categories (add/remove). How to update/refresh/reload the combobox whenever a category is added/removed?
My code:
int catIndex = model2->fieldIndex("category"); model2->setRelation(catIndex, QSqlRelation("categories", "id", "name")); QSqlTableModel *catModel = model2->relationModel(catIndex); ui->comboBox_2->setModel(catModel); ui->comboBox_2->setModelColumn(catModel->fieldIndex("name")); mapper->addMapping(ui->comboBox_2, catIndex);
-
Hi,
How are you adding / removing these categories ?
-
@m-sue
I can call the main window from the categories window. Problem is I don't know the code to reload the QComboBox.@SGaist
It's another window which has a QTableView with a QSqlTableModel linked to the categories table.Hi @rudag
I do not understand. You wrote the code in your first post. Just call it again. Then the changed model should refill the combobox.
If you want the model to update your combobox, though, you will probably have to derive your own model class and override the functions for update and remove of data sets.
-Michael.
-
Then why not share the model between the widgets ?