I implement custom delegate for QTableWidget to edit cell data like QComboBox. All works fine except one.
When user selects something in the combobox this changes does not applied while user will select another cell. The method QStyledItemDelegate::setModelData() of custom delegate not calling. So, user's changes are not applied.
What I should to do, to apply value in the combobox, after user makes selection?