There is a table in which the ComboBox delegate is applied to the column. How can I get the current cell value of a cell from this column?
If I do this:
QComboBox *combo = static_cast<QComboBox*>(ui->tableWidgetData->cellWidget(i,3)); combo->itemText(combo->currentIndex());
then the program crashes with a segmentation error.