//Создаем и заполняем
C++ (Qt)
QComboBox *cbGroup = new QComboBox();
cbGroup->setInsertPolicy(QComboBox::InsertAlphabetically);
cbGroup->addItems(debetGroup);
cbGroup->setEditable(true);
.....
//Не знаю важно это или нет, QComboBox вставлен в QTableWidget
C++ (Qt)
debetTable->setCellWidget(currentRow, 1, cbGroup);
...
//Подключение обработки событий на введенный новый текст
C++ (Qt)
connect(cbGroup, SIGNAL(currentIndexChanged(QString)),
this, SLOT(addGroup(QString)));
...
//Собственно сам процесс считывания данных
C++ (Qt)
QComboBox *tmpCB;
QStringList debetGroup;
tmpCB = (QComboBox *)ui->debetTable->cellWidget(i, 1);
debetGroup<<tmpCB->currentText();
]for (int x = 0; x<tmpCB->count(); x++)
{
debetGroup<<tmpCB->itemText(x);
};
как то так...