Hello all.

I having trouble to find a decent way to handle insertions of items.
I´m using a QTableView and a QStandardItemModel. My aim is to insert an icon and two strings inside one single cell .
I would like to arrange them like a list with the icon at top and the two strings under.
What would be the best solution to this?
Is it possible to insert a QListView inside a cell and fill that view with a QList?
perhaps not with something standard as QStandardItemModel .

I tried with itemDelegate and added a widget with some labels but with no luck otherwise this should do the trick I guess.

Another option that comes to mind is to somehow make like 3 rows inside this cell and setData to each row but it generates some other problems with index if it´s even possible.

thanks..