No, what i meant is that i want my user to be able to change color column (which is the Qt::decorationRole of the second column) i have color editor assigned to this by using the following

Qt Code:
  1. //creates Color Editor
  2. QItemEditorCreatorBase *colorListCreator =
  3. new QStandardItemEditorCreator<ColorEditor>();
  4. factory->registerEditor(QVariant::Color, colorListCreator);
  5. QItemEditorFactory::setDefaultFactory(factory);
To copy to clipboard, switch view to plain text mode 

it seems that i cannot get my ColorEditor to popup , by the way my coloreditor is a QComboBox populated with colors known to Qt.

baray98