How to insert two List of QStandardItem into QStandardItemModel?
Dear all,
I try to insert two QStandardItem List.
- QStandardModel.insertColumn(items1);
- QStandardModel.insertColumn(items2);
What I want is
- items1
- items1
- items1
- items1
- items2
- items2
- items2
- items2
But what I got is
- items2 items1
- items2 items1
- items2 items1
- items2 items1
How can I fix that. items1 & items2 can’t combine because they are generated with different time & places..
Thanks
1 reply
You must log in to post a reply. Not a member yet? Register here!


