Hi
I have data in a tableview and for some column,
I need to edit a cell via a dialog.
Deriving from QItemDelegate and implementing
* createEditor to return a modal dialog
* setEditorData to extract the structured data from the variant and put it on the dialog
* setModelData to take back the structure data from the dialog and put it back in the variant in the model,
I have quite all right *except* that setModelData is not executed straight away after
the dialog disappears. Only when I click back on the tableview...

Anybody has an hint on how to do that kind of thing ?
Should I use an intermediate button as a proxy editor in the cell (my user may not like this indirection) ?

Thanks in advance. Regards.